×
×
Correct!
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! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?