Files
createmodulespygo/main.go

11 lines
124 B
Go

package main
import "fmt"
//export test
func test(){
fmt.Println("hello world!!!")
}
func main(){
test
}