Menu
×
×
正确
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()
}
不正确
点击 此处 重试 正确
下一题 ❯package main import ("fmt") funcw3exercise_input_no_0{ fmt.Println("I just got executed!") } func main() {w3exercise_input_no_1} |