Skip to content

Instantly share code, notes, and snippets.

@parzibyte

parzibyte/var.kt Secret

Created July 2, 2019 17:22
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 parzibyte/5f2c29ddc8a05abc2a08d8ea339662e9 to your computer and use it in GitHub Desktop.
Save parzibyte/5f2c29ddc8a05abc2a08d8ea339662e9 to your computer and use it in GitHub Desktop.
// Dejar que se infiera
var peso = 15.0f
// Declarar con tipo y valor
var nombre : String = "Luis"
// Declarar y asignar más tarde
var edad : Int
edad = 22
println(nombre)
println(edad)
println(peso)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment