選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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.