summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/old TstCBot/CBotTest.txt
diff options
context:
space:
mode:
authorPiotr Dziwiński <piotrdz@gmail.com>2012-08-13 08:46:03 -0700
committerPiotr Dziwiński <piotrdz@gmail.com>2012-08-13 08:46:03 -0700
commitdc3cadd309a1ac1eb4921de69fed6037881b0b91 (patch)
treeb82608ec58ff73c9043f17f4b8bc1c42313388dd /src/CBot/tests/old TstCBot/CBotTest.txt
parent146ad47e4afbf1fe82763c94c2cd2209285f869f (diff)
parente154e654f1e046a4d60e09d3ef87d1cf9c3ae6ae (diff)
downloadcolobot-dc3cadd309a1ac1eb4921de69fed6037881b0b91.tar.gz
colobot-dc3cadd309a1ac1eb4921de69fed6037881b0b91.tar.bz2
colobot-dc3cadd309a1ac1eb4921de69fed6037881b0b91.zip
Merge pull request #37 from konopackim/dev
Fixes and console interpreter
Diffstat (limited to 'src/CBot/tests/old TstCBot/CBotTest.txt')
-rw-r--r--src/CBot/tests/old TstCBot/CBotTest.txt36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/CBot/tests/old TstCBot/CBotTest.txt b/src/CBot/tests/old TstCBot/CBotTest.txt
deleted file mode 100644
index ce20e26..0000000
--- a/src/CBot/tests/old TstCBot/CBotTest.txt
+++ /dev/null
@@ -1,36 +0,0 @@
-
-extern void TheTest()
-{
- for (int x = 130; x>0; x--) print (x);
-}
-
-extern void Test()
-{
- int var = 10000 ;
- while (var > 0) var = var -1;
-}
-// exécuté en 30 secondes
-
-extern void Autre()
-{
- int var = 10000 ;
- while (var > 0) if ( var > 0 ) var = var -1;
-}
-// exécuté en 45 secondes
-
-int Y ( int n )
-{
- if ( n < 2 ) return n;
- int a = Y(n-1) + Y(n-2);
- return a;
-}
-
-extern int X ( int n )
-{
- if ( n < 2 ) { print(n); return n; }
- int a = X(n-1) + Y(n-2);
- print (a);
- return a;
-}
-
-