Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 301 Bytes

README.md

File metadata and controls

26 lines (19 loc) · 301 Bytes

Ceya

Simple toy programming language.

Examples

Program that prints numbers from 100 to 1:

100;
ke;
while (soro > 0) {
    ke;
    print soro;
    soro - 1;
    ke;
}

Compilation

cargo run -- com [-r] <filename.ceya>

-r to instantly run your program after compilation.