Un cours pour se lancer dans la programmation avec le langage Go (golang).
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920
  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. }