|
Post by plus on May 28, 2023 15:11:31 GMT
Just found this Rosetta Code Challenge today: rosettacode.org/wiki/Find_limit_of_recursion#BASICHere is code I tested: ' Recursion Limit ' https://rosettacode.org/wiki/Find_limit_of_recursion#BASIC
call HowRecursive 1
sub HowRecursive i print i call HowRecursive i + 1 end sub
Output BaCon FreeBasic Oh looks like LB reports even more than JB and allot more using [GoSub]
|
|