Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

main.go 199B

2 år sedan
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.