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

10
Section3/exercice2.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import "fmt"
func main() {
a := 1
b := 2
c := a + b
fmt.Println("The addition of ", a, " and ", b, " is ", c)
}