From f5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 Mon Sep 17 00:00:00 2001 From: "john.j.camilleri" Date: Mon, 16 Sep 2013 07:17:27 +0000 Subject: 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 --- examples/gfcc/fibonacci.c | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 examples/gfcc/fibonacci.c (limited to 'examples/gfcc/fibonacci.c') diff --git a/examples/gfcc/fibonacci.c b/examples/gfcc/fibonacci.c deleted file mode 100644 index 80e8a0d5c..000000000 --- a/examples/gfcc/fibonacci.c +++ /dev/null @@ -1,18 +0,0 @@ -int mx () { - return 5000000 ; -} ; - -int main () { - int lo ; int hi ; - lo = 1 ; - hi = lo ; - printf("%d",lo) ; - { - while (hi < mx()) { - printf("%d",hi) ; - hi = lo + hi ; - lo = hi - lo ; - } - } - return ; -} ; -- cgit v1.2.3