Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

13 lignes
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.