Menu
×
×
Correct!
Exercise: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!Next ❯ |