Files
createmodulespygo/main.go

11 lines
124 B
Go
Raw Normal View History

2026-03-30 13:53:14 +00:00
package main
import "fmt"
//export test
func test(){
fmt.Println("hello world!!!")
}
func main(){
test
}