Un cours pour se lancer dans la programmation avec le langage Go (golang).
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- package main
-
- import (
- "fmt"
- "githell.e2li.org/Patrick/LeGoEn10Etapes/testexport/affiche"
- )
-
- func main() {
- m := affiche.Message{
- Suite: "Salut",
- }
- fmt.Println(affiche.Number)
- fmt.Println(m.Suite)
- fmt.Println(affiche.data)
- }
-
- func Export() int {
- return 421
- }
|