主页
Go
Go 函数
demo_func11
运行 ❯
×
更改方向
保存代码
更改主题
package main import ("fmt") func myMessage() { fmt.Println("I just got executed!") } func main() { myMessage() myMessage() myMessage() }
I just got executed!
I just got executed!
I just got executed!