oak-csharp 0.0.11

C# frontend for Oak
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;
}