summaryrefslogtreecommitdiffstats
path: root/test/cbot/scenarios/Z.txt
diff options
context:
space:
mode:
Diffstat (limited to 'test/cbot/scenarios/Z.txt')
-rw-r--r--test/cbot/scenarios/Z.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/cbot/scenarios/Z.txt b/test/cbot/scenarios/Z.txt
new file mode 100644
index 0000000..714119b
--- /dev/null
+++ b/test/cbot/scenarios/Z.txt
@@ -0,0 +1,14 @@
+public extern void tp()
+{
+ int a [4], b[];
+ a [ 0 ] = 8 ;
+
+ b = T ( a ) ;
+ show ( a, b );
+}
+
+int[] T ( int[] Z )
+{
+ for ( int i = 0; i < 4 ; i++ ) Z[ i ] = i * i ;
+ return Z;
+} \ No newline at end of file