From 8582e3520ff487ea71e68a10fa8641fd95e74706 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benedikt=20B=C3=B6hm?= Date: Tue, 7 Jul 2009 10:43:01 +0200 Subject: cleanup test code --- test/test5.t | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 test/test5.t (limited to 'test/test5.t') diff --git a/test/test5.t b/test/test5.t deleted file mode 100644 index c6e786d..0000000 --- a/test/test5.t +++ /dev/null @@ -1,27 +0,0 @@ -fun main[] - x = call ggt1[30,40] - print x - y = call ggt2[30,40] - print y - @x == y -end - -fun ggt1[x,y] - while x != y - if x > y - x = x - y - else - y = y - x - end - end - @x -end - -fun ggt2[a,b] - while b - x = a - a = b - b = x % b - end - @a -end -- cgit v1.2.3