Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shockalotti/a7e28363d63d73e3f51b to your computer and use it in GitHub Desktop.
Save shockalotti/a7e28363d63d73e3f51b to your computer and use it in GitHub Desktop.
Go Golang - basic function call stack
package main
import "fmt"
func f2() int {
return 1
}
func f1() int {
return f2()
}
func main() {
fmt.Println(f1())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment