summaryrefslogtreecommitdiffstats
path: root/src/CBot/TestCBot/array.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/TestCBot/array.txt')
-rw-r--r--src/CBot/TestCBot/array.txt24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/CBot/TestCBot/array.txt b/src/CBot/TestCBot/array.txt
deleted file mode 100644
index 081b60e..0000000
--- a/src/CBot/TestCBot/array.txt
+++ /dev/null
@@ -1,24 +0,0 @@
-
-public extern void TestTableau ()
-{
- int tableau [ 12 ] ;
-
- point array[ 12 ] [ 14 ] ;
-
- point zéro ( 1, 2 ) ;
- point a = zéro ;
-
- for ( int i = 0 ; i < 10 ; i++ ) array[ i ] [ i ]= zéro ;
-
- array[ 5 ] [3 ] . x =1.5 ;
-
- array[ 2 ] [ 2 ] . y = array[ 5 ] [ 5 ] . x ;
-
- array[ 4 ] = array [ 2 ] ;
-
- for ( int i = 0 ; i < 10 ; i++ ) for ( int j = 0 ; j < 4 ; j++ ) println ( i, j, array [ i ] [ j ] ) ;
-
- show( zéro, a, array );
-
-}
-