]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Deriving4.scl
Added info on backup location to documentation backup.
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / 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)