Skip to content

Instantly share code, notes, and snippets.

@GhazeyAhmed
Created June 25, 2022 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GhazeyAhmed/c303471f789477a09a8771242de74726 to your computer and use it in GitHub Desktop.
Save GhazeyAhmed/c303471f789477a09a8771242de74726 to your computer and use it in GitHub Desktop.
StackTrace
package main
func main() {
One()
}
func One() {
Two()
}
func Two() {
Three()
}
func Three() {
panic("too deep")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment