rlox/interpreter/tests/lox/operator/add.lox

2 lines
71 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
print 123 + 456; // expect: 579
print "str" + "ing"; // expect: string