Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 1.13 KB

README.md

File metadata and controls

42 lines (34 loc) · 1.13 KB

JuicyLang

Juicy is an experimental and educational purposed interpreted programming language written in Python using PLY.

This is my compiler course project in university therefore is a good start for anyone who intends to learn compiler and interpreter design.

Installing

Dependencies

Make sure you have Python on your system and then in order to install Dependencies go to project's directory and enter this command

pip install -r requirements.txt

Usage

$ ./juicylang --help
Usage: juicylang [file-name]
    Runs and interprets the given jul file.
    If no file is given, reads from standard input.
    Example usage:
        $ asmrun examples/myprogram.jul
Options:
    -h, --help  Shows help text.
Author:
    Hamidreza Mahdavipanah <h.mahdavipanah@gmail.com>
Repository:
    http://github.com/mahdavipanah/juicylang
License:
    MIT License

There are some example programs written in Juicy in examples directory.

License

MIT