This file contains hidden or 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
// Programa que imprime un saludo utilizando un nombre almacenado en una variable fija | |
fun main() { | |
val nombre = "@NodosAcademy 🚀" | |
println("Hola, nosotros somos: $nombre") | |
} |
This file contains hidden or 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
// Programa que muestra un saludo de bienvenida al ejecutarse | |
fun main() { | |
println("Hola a todxs desde @NodosAcademy 🚀") //Salida de datos | |
} |