Category:AntLang: Difference between revisions

From Rosetta Code
Content added Content deleted
No edit summary
No edit summary
Line 3: Line 3:
AntLang is intended to be a practical functional language.
AntLang is intended to be a practical functional language.


It has a built-in database called Ad (AntLang database), which adds syntactical constructs to the language.
It has a built-in web-server:
<lang AntLang>serv: httprun[8080; {"HTTP/1.0 OK 200\r\n\r\n<h1>Hello!</h1>"}]</lang>

The AntLang-Library-Collection (ALC) makes use of this web-server, so it can be rewritten like this:
<lang AntLang>load["handlers.ant"]
serv: httprun[8080; {httpwrap["<h1>Hello!</h1>"]}]</lang>


See [https://ac1235.github.io/ the website], if you are interested.
See [https://ac1235.github.io/ the website], if you are interested.

Revision as of 12:06, 2 July 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 intended to be a practical functional language.

It has a built-in database called Ad (AntLang database), which adds syntactical constructs to the language.

See the website, if you are interested. There also is an AntLang tutorial on this page.