Files
master_go_programming/Section3/exercice2.go
2023-09-27 12:45:28 +02:00

11 lines
131 B
Go

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