Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

13 linhas
199B

  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.