poggingfish / plisp

The source code for the plisp programming language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The PLISP programming language



Installation


./install.sh
Run this is in same directory has the folder containing plsp.py

Examples


Hello world:

(
    print(Hello,\s world!\n)
)

Math:

(
    +(5)(2)
)

If statement:

(
    if(==)(1)(1)
        (print(True\n))
        (print(False\n))
)

Import libraries

(exec(library.plsp))


Docs coming soon

About

The source code for the plisp programming language.


Languages

Language:Python 99.2%Language:Shell 0.8%