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/10.go

9 lines
99 B
Go
Raw Normal View History

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