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