]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/Proc1.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / scl / Proc1.scl
1 import "Prelude"
2    
3 main = do
4     r = ref 13
5     r := 14
6     getRef r
7 --
8 14