oak-crystal 0.0.0

High-performance incremental ActionScript parser for the oak ecosystem with flexible configuration, supporting modern ActionScript features and Flash development.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
int main() {
    return 0;
}

void hello_world() {
    printf("Hello, World!\n");
}

int add(int a, int b) {
    return a + b;
}

float multiply(float x, float y) {
    return x * y;
}