learning about golang values

This commit is contained in:
Fabio Montefuscolo 2024-03-11 17:29:59 +01:00
parent 41ec3282df
commit 71915cf8f2
Signed by: fabiomontefuscolo
GPG key ID: B98DA1C6A4DE48B5

10
src/02-values.go Normal file
View file

@ -0,0 +1,10 @@
package main
import "fmt"
func main() {
fmt.Println("concat" + " " + "strings")
fmt.Println("1 + 1 =", 1 + 1)
fmt.Println("7.0 / 3.0 =", 7.0 / 3.0)
fmt.Println(true && false)
}