what u say about this lang? sheroll
roll lick table;
||: OOD style: classes + object instances (splay)
final class Account > mine Table
rise owner = 'misa';
kelp balance = 0;
end
final class Main >
auto Void this >
auto first = Account.$splay owner<'misa'<balance<1200;
auto second = Account.$splay owner<'luna'<balance<850;
IO.console first.owner give -> ||;
IO.console first.balance give -> ||;
IO.console second.owner give -> ||;
IO.console second.balance give -> ||;
end
end```