mlox/lox.t/string/multiline.lox

7 lines
65 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
var a = "1
2
3";
print a;
// expect: 1
// expect: 2
// expect: 3