wraith-lang/ordering.w

15 lines
182 B
OpenEdge ABL

struct Foo {
static Func(): void {
Func2();
}
static Func2(): void {
Func();
}
}
struct Program {
static main(): int {
return 0;
}
}