summaryrefslogtreecommitdiff
path: root/examples/features
diff options
context:
space:
mode:
Diffstat (limited to 'examples/features')
-rw-r--r--examples/features/Param.gf11
1 files changed, 0 insertions, 11 deletions
diff --git a/examples/features/Param.gf b/examples/features/Param.gf
deleted file mode 100644
index 15b0cd8b7..000000000
--- a/examples/features/Param.gf
+++ /dev/null
@@ -1,11 +0,0 @@
-resource Param = {
-
- param Bool = True | False ;
-
- oper and -- : Bool -> Bool -> Bool
- = \\x,y => case x of {
- True => y ;
- False => False
- } ;
-
-}