Un cours pour se lancer dans la programmation avec le langage Go (golang).
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

main.go 269 B

1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
1 rok temu
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. }