×
×
Correct!
Insert the missing part to call myFunction two times.
package main
import ("fmt")
func myFunction(){
fmt.Println("I just got executed!")
}
func main() {
@(12)
@(12)
}
package main
import ("fmt")
func myFunction(){
fmt.Println("I just got executed!")
}
func main() {
myFunction()
myFunction()
}
Not CorrectClick here to try again. Correct! |
This will reset the score of ALL 28 exercises.
Are you sure you want to continue?