Skip to content

Latest commit

 

History

History
45 lines (39 loc) · 451 Bytes

README.md

File metadata and controls

45 lines (39 loc) · 451 Bytes

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