package main import ( "fmt" ) func main() { calcDouble(10) } func calcDouble(num int) { fmt.Println(num * 2) }