10 lines
187 B
Go
10 lines
187 B
Go
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)
|
|
}
|