This commit is contained in:
2023-09-27 12:45:28 +02:00
parent 210080fe2f
commit c0e9c85775
7 changed files with 35 additions and 2 deletions

9
Section3/exercice1.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import "fmt"
func main() {
a := 1
b := 2
fmt.Println(a, b)
}