Last active
December 18, 2017 19:13
-
-
Save lucianoschillagi/096bf034fc30383732ed16ecc5522b1b 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 Leguas { | |
var longitudEnLeguas: Double | |
init(_ leguas: Double){ | |
longitudEnLeguas = leguas | |
} | |
init(desdeMillas millas:Double) { | |
longitudEnLeguas = millas / 3 | |
} | |
} | |
var deMillasALeguas = Leguas(desdeMillas: 9.87) // Prints 3.29 | |
print(deMillasALeguas.longitudEnLeguas) | |
var otraMedidaEnLeguas = Leguas(5) // Prints 5 | |
print(otraMedidaEnLeguas.longitudEnLeguas) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment