]> gerrit.simantics Code Review - simantics/platform.git/blob - Deriving4.scl
03ea0d609935a4a1b4153c3181a4320701c6b147
[simantics/platform.git] / Deriving4.scl
1 import "Prelude"
2
3 data Foo = Foo Integer Long Double Float
4
5 deriving instance Show Foo
6
7 main = show (Foo (-1) (-1) (-1) (-1))
8 --
9 Foo (-1) (-1) (-1.0) (-1.0)