summaryrefslogtreecommitdiff
path: root/examples/attempto/SymbolsC.gf
diff options
context:
space:
mode:
authorjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
committerjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
commitf5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 (patch)
tree946c9e8542b8e8271b6b529a95c0400fa6613cb4 /examples/attempto/SymbolsC.gf
parent8e1c6cca407c82fc09569d80c231b8d256735989 (diff)
Remove contribs and examples
Everything has now been moved to a separate repository at https://github.com/GrammaticalFramework/gf-contrib The contents of the examples folder are build during SetupWeb
Diffstat (limited to 'examples/attempto/SymbolsC.gf')
-rw-r--r--examples/attempto/SymbolsC.gf25
1 files changed, 0 insertions, 25 deletions
diff --git a/examples/attempto/SymbolsC.gf b/examples/attempto/SymbolsC.gf
deleted file mode 100644
index b92885bb9..000000000
--- a/examples/attempto/SymbolsC.gf
+++ /dev/null
@@ -1,25 +0,0 @@
-concrete SymbolsC of Symbols = open Precedence, Prelude in {
-
-lincat Term = TermWithPrec ;
-lincat Formula = SS ;
-lincat Var = SS ;
-
-lin plus_Term = mkpInfixL "+" p1 ;
-lin minus_Term = mkpInfixL "-" p1 ;
-lin div_Term = mkpInfixL "/" p2 ;
-lin times_Term = mkpInfixL "*" p2 ;
-lin neg_Term = mkpFun1 "-" ;
-lin int_Term i = mkpConst i.s ;
-lin var_Term i = mkpConst i.s ;
-
-lin eq_Formula = infixSS "=" ;
-lin lt_Formula = infixSS "<" ;
-lin gt_Formula = infixSS ">" ;
-lin le_Formula = infixSS "=<" ;
-lin ge_Formula = infixSS ">=" ;
-lin ne_Formula = infixSS "\\=" ;
-
-lin X_Var = ss "X" ;
-lin Y_Var = ss "Y" ;
-
-}