hello/hello.go

10 lines
100 B
Go
Raw Normal View History

2024-05-06 13:25:41 +02:00
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
i := 101
fmt.Println(i)
}