Загрузить файлы в «/»

This commit is contained in:
2026-03-30 13:53:14 +00:00
parent 9b32a7cbf7
commit 32b1fcc2f7
3 changed files with 27 additions and 0 deletions

11
main.go Normal file
View File

@@ -0,0 +1,11 @@
package main
import "fmt"
//export test
func test(){
fmt.Println("hello world!!!")
}
func main(){
test
}