From d9f7697f7a9f8fb44fa2ead3eecf6ca3c3cad19f Mon Sep 17 00:00:00 2001 From: "john.j.camilleri" Date: Mon, 17 Oct 2011 16:01:07 +0000 Subject: Added Eclipse contents --- eclipse/examples/hello/AbsCat.gf | 5 +++++ eclipse/examples/hello/HelloAbs.gf | 12 ++++++++++++ eclipse/examples/hello/HelloEng.gf | 21 +++++++++++++++++++++ eclipse/examples/hello/ResEng.gf | 8 ++++++++ 4 files changed, 46 insertions(+) create mode 100644 eclipse/examples/hello/AbsCat.gf create mode 100644 eclipse/examples/hello/HelloAbs.gf create mode 100644 eclipse/examples/hello/HelloEng.gf create mode 100644 eclipse/examples/hello/ResEng.gf (limited to 'eclipse/examples/hello') diff --git a/eclipse/examples/hello/AbsCat.gf b/eclipse/examples/hello/AbsCat.gf new file mode 100644 index 000000000..dac5c07db --- /dev/null +++ b/eclipse/examples/hello/AbsCat.gf @@ -0,0 +1,5 @@ +abstract AbsCat = { + + cat Greeting ; Recipient ; + +}; diff --git a/eclipse/examples/hello/HelloAbs.gf b/eclipse/examples/hello/HelloAbs.gf new file mode 100644 index 000000000..70ab490bf --- /dev/null +++ b/eclipse/examples/hello/HelloAbs.gf @@ -0,0 +1,12 @@ +abstract HelloAbs = AbsCat [Greeting, Recipient] ** { + + flags startcat = Greeting ; + + cat Farewell ; + + fun + Hello : Recipient -> Greeting ; + Goodbye : Recipient -> Farewell ; + World, Parent, Friends : Recipient ; + +} diff --git a/eclipse/examples/hello/HelloEng.gf b/eclipse/examples/hello/HelloEng.gf new file mode 100644 index 000000000..d67843ef0 --- /dev/null +++ b/eclipse/examples/hello/HelloEng.gf @@ -0,0 +1,21 @@ +concrete HelloEng of HelloAbs = ResEng ** { + + lincat + Greeting, Farewell = {s : Str} ; + Recipient = {s : Gender => Str} ; + + lin + Hello recip = {s = "hello" ++ recip.s ! Masc} ; + Goodbye recip = {s = "goodbye" ++ recip.s ! Fem} ; + + World = {s = \\_ => "world"} ; + Parent = { s = table { + Masc => "dad" ; Fem => "mum" + } } ; + Friends = superate "friends" ; + + oper + superate : Str -> Recipient = \s -> + lin Recipient { s = \\_ => "super" ++ s } ; + +} diff --git a/eclipse/examples/hello/ResEng.gf b/eclipse/examples/hello/ResEng.gf new file mode 100644 index 000000000..1ecf97a4d --- /dev/null +++ b/eclipse/examples/hello/ResEng.gf @@ -0,0 +1,8 @@ +--# -path=.:../abstract:../common:../../prelude +resource ResEng = { + + param + OtherParam = A | B ; + Gender = Masc | Fem ; + +} ; -- cgit v1.2.3