Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Challenge: Constants | Getting Started
Introduction to GoLang

book
Challenge: Constants

Task

Declare and initialize a constant called myConst with a value of 17.

go

index

copy
package main
import "fmt"

func main() {
___
fmt.Println(myConst) // Should output 17
}
1234567
package main import "fmt" func main() { ___ fmt.Println(myConst) // Should output 17 }

Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 11
We use cookies to make your experience better!
some-alt