Contenido del Curso
Introduction to GoLang
Introduction to GoLang
Challenge: Basics of Variables
Task
Complete the following code so that both myVar1
and myVar2
are successfully declared and initialized.
index
package main import "fmt" func main() { ___ myVar1 = 1 myVar2 __ 2 fmt.Println("The value of myVar1 is", myVar1) fmt.Println("The value of myVar2 is", myVar2) }
¡Gracias por tus comentarios!