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