GEL Genius is an open source programming language created in 1997.
#1319on PLDB | 27Years Old |
Genius (also known as the Genius Math Tool) is a free open-source numerical computing environment and programming language, similar in some aspects to MATLAB, GNU Octave, Mathematica and Maple. Genius is aimed at mathematical experimentation rather than computationally intensive tasks. It is also very useful as just a calculator. Read more on Wikipedia...
function f(x) = (
if x <= 1 then
1
else
(f(x-1)*x)
)
print("Hello, world!")
function f(x) = (
if x <= 1 then
1
else
(f(x-1)*x)
)