]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/JavaAccess1.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 / JavaAccess1.scl
1 import "JavaBuiltin" as Java
2
3 importJava "java.lang.String" where
4     substring :: String -> Integer -> Integer -> String
5
6 main = substring "01234" 1 4
7 --
8 123