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