Skip to content

Instantly share code, notes, and snippets.

@geykel
Created January 28, 2016 03:17
Show Gist options
  • Select an option

  • Save geykel/c80dd868f9b7659986b1 to your computer and use it in GitHub Desktop.

Select an option

Save geykel/c80dd868f9b7659986b1 to your computer and use it in GitHub Desktop.
// valores raw implícitos desde 0
enum Monedas: Int {
case DolarAmericano
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