Menu
×
×
Correct!
Exercise:Create a function named
package main
import ("fmt")
func myFunction() {
fmt.Println("I just got executed!")
}
func main() {
myFunction()
}
Not CorrectClick here to try again. Correct!Next ❯package main import ("fmt") func{ fmt.Println("I just got executed!") } func main() { } |