]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/ListSyntax6.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / scl / ListSyntax6.scl
1 import "Prelude"
2
3 main :: [Integer]
4 main = [x | x <- [1..10], then take 3]
5 --
6 [1, 2, 3]