Files
packets/main.go

11 lines
89 B
Go

package main
import (
"fmt"
"runtime"
)
func main() {
fmt.Println(runtime.GOARCH)
}