ola-parser 1.0.1

Ola Language Parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
contract C {
    u256 const a = 12;
    u256 const b = 10;

    fn f() -> (u256, u256) {
        u256[(a / b) * b]  x;
        return (x.length, (a / b) * b);
    }
}
// ====
// compileToEwasm: also
// compileViaYul: true
// ----
// fn c()  ->
// f()  -> 0x0a, 0x0a