]> gerrit.simantics Code Review - simantics/platform.git/blob - scl/compiler/tests/scl/ListSyntax12.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / scl / compiler / tests / scl / ListSyntax12.scl
1 import "Prelude"
2               
3 main = foldl (+) 0 [x | y <- [1..10], x <- [1..y]]
4 --            
5 220