]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/ListSyntax7.scl
Merge commit 'd1a82fe'
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / ListSyntax7.scl
1 import "Prelude"\r
2 \r
3 main :: [Integer]\r
4 main = [x | x <- [2,4,3,5,4,6], then sortBy by x]\r
5 --\r
6 [2, 3, 4, 4, 5, 6]