1
0
mirror of https://github.com/MADTeacher/go_basics.git synced 2025-11-23 21:34:47 +02:00
Files
go_basics/part_1/1.14/9.go

9 lines
119 B
Go
Raw Normal View History

package main
import "fmt"
func main() {
fmt.Println(4, 5.13, "Oo") // 4 5.13 Oo
fmt.Println(10) // 10
}