quickscript 0.5.5

A quick programming language with a compiler implemented in Rust.
Documentation
1
2
3
4
5
6
7
8
fn main() -> i32 {
    let argc: i32 = 8;
    puts("Hello, world!");
    puts("Another test!");
    printf("Args: %i\n", argc);

    return 0;
}