tinygo/hello/hello.go
2018-04-13 00:18:28 +02:00

14 строки
189 Б
Go

package main
const SIX = 6
func main() {
println("Hello world from Go!")
println("The answer is:", calculateAnswer())
}
func calculateAnswer() int {
seven := 7
return SIX * seven
}