Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprende Challenge: Constants | Section
/
Getting Started with Go

bookChallenge: Constants

Desliza para mostrar el menú

Task

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

index.go

index.go

copy
1234567
package main import "fmt" func main() { ___ fmt.Println(myConst) // Should output 17 }
  1. Use the const keyword for constants.
  2. Assign the value directly when declaring.
  3. The name should be myConst and the value 17.
package main
import "fmt"

func main() {
    const myConst = 17
    fmt.Println(myConst) // Should output 17
}
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 10

Pregunte a AI

expand

Pregunte a AI

ChatGPT

Pregunte lo que quiera o pruebe una de las preguntas sugeridas para comenzar nuestra charla

Sección 1. Capítulo 10
some-alt