You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 3 седмици
123456789101112
  1. package main
  2. import "fmt"
  3. func values() {
  4. fmt.Println("go" + "lang")
  5. fmt.Println("1+1=", 1+1)
  6. fmt.Println("7.0/3.0=", 7.0/3.0)
  7. fmt.Println(true && false)
  8. fmt.Println(true || false)
  9. fmt.Println(!true)
  10. }