INNER CODE UNIT · Go
main
mouredev/one-day-one-language · 08 - Go/hello_world.go:13
func main() {
// Hola mundo
fmt.Println("Hola, Go!")
/*
Esto es un comentario
*/
// Variables
var myString string = "Esto es una cadena de texto"
fmt.Println(myString)
myString = "Aquí cambio el valor de la cadena de texto"
fmt.Println(myString)