]> gerrit.simantics Code Review - simantics/platform.git/blob - Forall1.scl
e543d19cceb92512363dcdca681a8165f39a8088
[simantics/platform.git] / Forall1.scl
1      
2 id :: forall a. a -> a
3    // ^ not usually needed, but we test just that this is possible
4 id x = x
5
6 main = id (3 :: Integer)
7 --
8 3