mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
14 lines
144 B
Go
14 lines
144 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func greet(who string) {
|
|
fmt.Printf("Hello %s!", who)
|
|
}
|
|
|
|
func main() {
|
|
world := "world"
|
|
greet(world)
|
|
greet2()
|
|
}
|