Skip to content

Instantly share code, notes, and snippets.

@geykel
Created January 28, 2016 03:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save geykel/9615cd48de83084d7bab to your computer and use it in GitHub Desktop.
Save geykel/9615cd48de83084d7bab to your computer and use it in GitHub Desktop.
// valores raw implícitos desde un valor explícitamente proporcionado
enum Monedas: Int {
case DolarAmericano = 1
case PesoCubano
case LibraEsterlina
case Yen
}
let dolar = Monedas.DolarAmericano.rawValue
let peso = Monedas.PesoCubano.rawValue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment