rubyx-debugger/codes/layout.soml
2015-11-09 00:02:02 +02:00

24 lines
284 B
Plaintext

class Layout < Object
Class object_class()
return get_internal(2)
end
end
class Object
Layout get_layout()
return get_internal(1)
end
Class get_class()
Layout l = get_layout()
return l.object_class()
end
int main()
return get_class()
end
end