From b20c2c13f229704f5b4b9a43d8323f24e18977f2 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 7 Nov 2014 15:03:03 -0600 Subject: BAS: Rename examples/bas to examples/bastest. Hook into build and configuration system. Finish ROMFS logic --- apps/examples/bastest/tests/test21.bas | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 apps/examples/bastest/tests/test21.bas (limited to 'apps/examples/bastest/tests/test21.bas') diff --git a/apps/examples/bastest/tests/test21.bas b/apps/examples/bastest/tests/test21.bas new file mode 100644 index 000000000..dd0f63beb --- /dev/null +++ b/apps/examples/bastest/tests/test21.bas @@ -0,0 +1,16 @@ +dim a(3,4) +for i=0 to 3 + for j=0 to 4 + a(i,j)=i*10+j + print a(i,j); + next + print +next +mat b=a +for i=0 to 3 + for j=0 to 4 + print b(i,j); + next + print +next + -- cgit v1.2.3