wraith-lang/types.w

14 lines
252 B
OpenEdge ABL
Raw Permalink Normal View History

struct MyStruct {
foo: int;
bar: bool;
MyFunction(): int {
return foo * 420;
}
}
struct Program {
static Main(): int {
decl: Reference<Reference<Reference<Reference<Reference<MyStruct>>>>>;
return 0;
}
}