v/compiler/tests/repl/interpolation.repl
Henrixounez 7879bde8bb repl: enabled back and added automated tests
fixed typos and macos errors
2019-08-10 07:01:40 +02:00

5 lines
68 B
Text

a := 'Hello'
b := 'World'
println('$a $b')
===output===
Hello World