]> gerrit.simantics Code Review - simantics/platform.git/blob - TypeAlias1.scl
f2c0a042400dedd4a758759cb755078116adf9da
[simantics/platform.git] / TypeAlias1.scl
1
2 type Id = Integer
3
4 incrementId :: Id -> Id
5 incrementId x = x
6
7 main = incrementId 3
8 --
9 3