package main import "fmt" func main() { fmt.Println("hello world") } func addOne(x int) int { return x + 1 } func addTwo(x int) int { return x + 2 }