6 releases

0.2.3 Sep 17, 2023
0.2.1 Mar 21, 2023
0.2.0 Mar 19, 2023
0.1.0 Mar 14, 2023

#27 in #dynamic-programming

Download history 38/week @ 2024-02-19 4/week @ 2024-02-26 94/week @ 2024-04-01

94 downloads per month

GPL-3.0-or-later

92KB
2K SLoC

Ocypode

A dynamic programming language written in Rust. WIP.

CI crate-publication
crate license
book

What is Ocypode?

Ocypode is a dynamically typed language. It is an interpreted language, the interpreter written in Rust. Ocypode is object-oriented, also it has a main function that is the entry point of the program. The grammar is written in Pest is a parser generator for Rust. you can find the grammar file here: grammar.pest.

Why Ocypode?

In general, Ocypode is for educational purposes. I am learning how to write a programming language, and Ocypode is the result of that. Also, Ocypode is good for how want to write a programming language in Rust.

Documentation

Ocypode will have a book soon. For now, you can read the tests or the grammar file.

How to run Ocypode?

You can install the Ocypode interpreter/REPL by running this command:

cargo install ocypode-lang

Then you can run the REPL by running this command: [WIP]

ocypode

Or you can run a file by running this command:

ocypode <file>

Or build it from the source

You can build Ocypode from the source by running these commands:

git clone https://github.com/TheAwiteb/ocypode-lang.git
cd ocypode
cargo build --release

Then you can find the binary in the target/release directory.

How to contribute?

The contribution is welcome. You can contribute by reporting bugs, fixing bugs, adding features, or improving documentation. You can also contribute by translating the documentation into other languages.

License

Ocypode is licensed under the GPLv3 license. You can find the license file here: LICENSE.

Dependencies

~11–22MB
~310K SLoC