Category:AntLang: Difference between revisions

From Rosetta Code
Content added Content deleted
(Created page with "{{stub}}{{language|AntLang}} AntLang is a practical functional language. Its documentation is on github: [https://github.com/ac1235/AntLang-Docs/ Documentation on github]")
 
No edit summary
Line 1: Line 1:
{{stub}}{{language|AntLang}}
{{language|AntLang}}


AntLang is a practical functional language.
AntLang is a practical functional language.


Its documentation is on github: [https://github.com/ac1235/AntLang-Docs/ Documentation on github]
Its documentation is on github: [https://github.com/ac1235/AntLang-Docs/ Documentation on github]

For example check this fibonacci implementation:
<lang AntLang>fib:{foldl[{x concat seq[(-1 elem x) + -2 elem x]}; 0 seq 1; range[x]]}</lang>

Revision as of 15:36, 12 May 2016

Language
AntLang
This programming language may be used to instruct a computer to perform a task.
See Also:


Listed below are all of the tasks on Rosetta Code which have been solved using AntLang.

AntLang is a practical functional language.

Its documentation is on github: Documentation on github

For example check this fibonacci implementation: <lang AntLang>fib:{foldl[{x concat seq[(-1 elem x) + -2 elem x]}; 0 seq 1; range[x]]}</lang>