www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - is using predSwitch the only way to create to create recursive

reply Andy Balba <pwplus7 gmail.com> writes:
,,
Jul 29 2020
parent =?UTF-8?Q?Ali_=c3=87ehreli?= <acehreli yahoo.com> writes:
On 7/29/20 3:13 PM, Andy Balba wrote:
 ,,
Not at all. The wording in the documentation is misleading. Recursive functions are as trivial as they are: int foo(uint i) { if (i == 0) { return 42; } return foo(i - 1); } void main() { assert(foo(7) == 42); } Ali
Jul 29 2020