package main
import "fmt"
// Helper function that will be called by others
func helper()
// Utility function that calls helper
func utility()
// Main caller that calls both utility and helper
func caller()
// Another function that calls caller
func mainFunc()
// Entry point
func main()