mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
10 lines
127 B
Plaintext
10 lines
127 B
Plaintext
|
|
fn _add(self, inc) {
|
|
return self + inc;
|
|
}
|
|
|
|
assert 1.add(2).add(3).add(4) == 10, "dottify bugfix failed";
|
|
|
|
|
|
print "All good";
|