mlox/lox.t/operator/add.lox
2024-08-03 02:44:12 +02:00

2 lines
71 B
Lox

print 123 + 456; // expect: 579
print "str" + "ing"; // expect: string