Un cours pour se lancer dans la programmation avec le langage Go (golang).
您不能選擇超過 %s 個話題 話題必須以字母或數字為開頭,可包含連接號 ('-') 且最長為 35 個字

21 行
269 B

  1. package main
  2. import (
  3. "fmt"
  4. "githell.e2li.org/Patrick/LeGoEn10Etapes/testexport/affiche"
  5. )
  6. func main() {
  7. m := affiche.Message{
  8. Suite: "Salut",
  9. }
  10. fmt.Println(affiche.Number)
  11. fmt.Println(m.Suite)
  12. fmt.Println(affiche.data)
  13. }
  14. func Export() int {
  15. return 421
  16. }