chrome 0.1.0

A high level rust-like language that transpiles into Luau.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use chrome::parse;

fn main() {
    let input = "fn hello";

    if let Ok((remaining, function)) = parse(input) {
        println!("{}, {}", function, remaining);
    } else {
        panic!("cannot parse this function!")
    }
}