occlum/demos/golang/go_exec/helloworld.go
2024-01-10 09:49:59 +08:00

12 lines
111 B
Go

package main
import (
"fmt"
_ "github.com/gin-gonic/gin"
)
func main() {
fmt.Println("Hello World!!!")
}