# Functions
Call calls function `f` and recovers from any panic occurring while it executes, returning it in a `PanicError` object type.
Go mimics the `go` goroutine built-in to execute function `f` in a goroutine but with the ability to safely recover from any panic occurring while it executes.
No description provided by the author
# Structs
PanicError is an error type wrapping a recovered panic value that happened during a function call.