Un cours pour se lancer dans la programmation avec le langage Go (golang).
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
1 年之前
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. }