summaryrefslogtreecommitdiffstats
path: root/src/CBot/tests/scenarios/array.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/CBot/tests/scenarios/array.txt')
-rw-r--r--src/CBot/tests/scenarios/array.txt24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/CBot/tests/scenarios/array.txt b/src/CBot/tests/scenarios/array.txt
new file mode 100644
index 0000000..081b60e
--- /dev/null
+++ b/src/CBot/tests/scenarios/array.txt
@@ -0,0 +1,24 @@
+
+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 );
+
+}
+