Recursion
A recursive function is a function that call itself unless it reaches matches a certain condition.
A breakpoint for recursive function is necessary otherwise it could keep calling itself for indefinite times, growing heap and stack that could be detrimental to program's performance
We are going to implement a classic example to calculate factorial or given number using Go, with recursive methodology
Last updated