]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/StringInterpolation2.scl
Merge commit 'ffdf837'
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / StringInterpolation2.scl
1 stringSum :: String -> Integer\r
2 stringSum "(\(a),\(b),\(c))" = a + b + c\r
3 \r
4 main = stringSum "(1,2,3)"\r
5 --\r
6 6