]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/StringInterpolation3.scl
(refs #7307) Added features field to SCL module header
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / StringInterpolation3.scl
1 import "Prelude"
2 // Test optimized special cases
3
4 main = let
5     a = "123"
6     b = "456"
7     c = "\(a)"
8     d = "abc\(b)"
9     e = "\(d)def"
10  in "\(c)\(e)"
11 --
12 123abc456def