mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
14 lines
269 B
Go
14 lines
269 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
sun := true // поменяйте на false и снова запустите приложение
|
|
if !sun {
|
|
fmt.Println("Взять зонт")
|
|
}
|
|
fmt.Println("Выйти на улицу")
|
|
}
|
|
|
|
// Выйти на улицу
|