Files
seer/tests/hellogo/hellogo.go
2023-01-29 16:45:00 -06:00

30 lines
314 B
Go

package main
import "fmt"
type MyStruct struct {
x string
i int
f float64
}
func main() {
fmt.Println("Hello, Go World!")
x := "abc"
i := 3
fmt.Println(i)
fmt.Println(x)
ms := &MyStruct{
x: "cba",
i: 10,
f: 11.10335,
}
fmt.Println(ms)
}