Last active
December 18, 2017 19:12
-
-
Save lucianoschillagi/4fef91384625e79344e33d72d9b6db42 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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