package
0.0.0-20211127175118-db3ee8db598d
Repository: https://github.com/saraginov/learn-go.git
Documentation: pkg.go.dev
# README
Recursion
Go supports recursive functions. A recursive function calls itself until it reaches the base case.
Closures can also be recursive, but this requires the closure to be declared
with a typed var
explicitly before it's defined.