@mdhughes @brokenix yes!
It's just recursion on a tail call:
This is a tail call:
function f(){
return f();
}
This is not:
function f(){
return 1 + f();
}
The concept is easy.
@mdhughes @brokenix yes!
It's just recursion on a tail call:
This is a tail call:
function f(){
return f();
}
This is not:
function f(){
return 1 + f();
}
The concept is easy.
tiflolinux.org - GNU Social is a social network, courtesy of tiflolinux.org. It runs on GNU social, version 2.0.1-beta0, available under the GNU Affero General Public License.
All tiflolinux.org - GNU Social content and data are available under the Creative Commons Attribution 3.0 license.