blob: a79471e5e9c8d2d43f95ec4ef903a55a38c5e5ff [file] [log] [blame]
## examples/string_interpolation.av
let name = "aviator";
let a = 1;
let b = 2;
let s = "hello, #{name}, #{a} + #{b} = #{a + b}";
p(s);