Files
tinygo/hello/hello.go
T
Ayke van Laethem 2478bb71f9 support print(int)
2018-04-12 15:19:20 +02:00

8 lines
95 B
Go

package main
func main() {
println("Hello world from Go!")
println("The answer is:", 42)
}