Inspired by Dennis Mitchell's Jelly (and other languages made by guys in codegolf.stackexchange), Recursiva is an esolang, based mainly on recursive-approaches (in the making).
You need python 3 (3.5+ recommended) to run the interpreter. REPL might need few modifications for non-windows platform
- Just Fire
python RecursivaInterpreter.py
to start the REPL.
OR
python RecursivaInterpreter.py code.txt input.txt
to get recursiva code and get input from the files.
This is the code that prints "Hello, World!" in Recursiva
P"Hello, World!"
P is the operator that prints the string following it.