Skip to content

Instantly share code, notes, and snippets.

@lucianoschillagi
Last active December 18, 2017 19:12
Show Gist options
  • Save lucianoschillagi/4fef91384625e79344e33d72d9b6db42 to your computer and use it in GitHub Desktop.
Save lucianoschillagi/4fef91384625e79344e33d72d9b6db42 to your computer and use it in GitHub Desktop.
class Fibra {
var color: String?
var cantidad = 1
var esNueva = false
}
let miFibra = Fibra() // default initializer
miFibra.esNueva // prints "False"
miFibra.cantidad // prints "1"
miFibra.color = "Azul"
print(miFibra.color ?? "Indeterminado") // prints "Azul"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment