You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 vuotta sitten
123456789101112
  1. package main
  2. import "fmt"
  3. func main() {
  4. fmt.Println(HelloWorld())
  5. }
  6. // HelloWorld is a function that returns a string containing "hello world".
  7. func HelloWorld() string {
  8. return "hello world"
  9. }

Powered by TurnKey Linux.