compile-claw 0.2.6

The Claw language compiler library
Documentation
1
2
3
4
5
import imported: func(a: u32) -> u32;

export func exported(a: u32) -> u32 {
    return imported(a);
}