rlox/interpreter/tests/lox/string/multiline.lox

7 lines
65 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
var a = "1
2
3";
print a;
// expect: 1
// expect: 2
// expect: 3