GLANG is a new hyper-functional programming language
- Philosophy: GLANG GLP is hyper-function focused; everything is a function call or definition.
- Expandable: GLANG GLP is infinitely expandable and supports JS integration.
Detailed Getting-Started guide and documentation are available here: https://itsgerassimos.github.io/GLP/
For a quick heads-up download the GLANG I/O latest release and open the GLANG command line. Then start typing functional commands like:
(print Hello World);
(ifelse (more 5 3) (print 5) (print 3));
(create a (1)); (while (less (a) 10) (actions (set a (add (a) 1)) (print (a) ) )));
(for (i) (0) (less (i) 10) (actions (set i (add (i) 1)) (print (i)) ))
(makeFunction reversePrint (actions (print (c)) (print (b)) (print (a))) () a b c);
(reversePrint Hello GPL World);
More examples will be added here: