mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
16 lines
181 B
Go
16 lines
181 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
hello() // вызов функции hello
|
||
|
|
fmt.Println("exit")
|
||
|
|
}
|
||
|
|
|
||
|
|
func hello() {
|
||
|
|
fmt.Println("Hello World!")
|
||
|
|
}
|
||
|
|
|
||
|
|
// Hello World!
|
||
|
|
// exit
|