]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/Guards1.scl
Remove unused import in DeleteHandler
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / Guards1.scl
1 import "Prelude"\r
2 \r
3 fib :: Integer -> Integer\r
4 fib x | x <= 2 = 1\r
5       | True   = fib (x-1) + fib (x-2)\r
6 \r
7 main = fib 13\r
8 --\r
9 233