LARP is a programming language created in 2003 by Marco Lavoie.
#2269on PLDB | 21Years Old |
LARP is an educational software for teaching algorithmic in structured programming using pseudo code and flowcharts. LARP's main advantage over traditional programming languages is its flexible and semi natural syntax, allowing one to formulate algorithms without the impediments of cryptic languages such as C++, Pascal or Java.
\\ Simple pseudo code
START
WRITE "Enter a number"
READ N
IF N < 0 THEN
WRITE "Negative number"
ELSE
WRITE "Positive number"
ENDIF
END