11 lines
124 B
Go
11 lines
124 B
Go
package main
|
|
import "fmt"
|
|
|
|
//export test
|
|
func test(){
|
|
fmt.Println("hello world!!!")
|
|
}
|
|
|
|
func main(){
|
|
test
|
|
} |