Course Content
Introduction to GoLang
Introduction to GoLang
Challenge: Constants
Task
Declare and initialize a constant called myConst
with a value of 17
.
index
package main import "fmt" func main() { ___ fmt.Println(myConst) // Should output 17 }
Thanks for your feedback!