In a flowchart, you usually donโt add a few calls for things like loops, you just indicate that the code can repeat until the condition is met. Thus, for a recursive function, this would be similar: the base case is an ordinary step, and the recursive step coincides with the loop. See this for an example.