summaryrefslogtreecommitdiff
path: root/apps/examples/bas/tests/test47.bas
blob: 960ac46c58c362e45b6a5acfbedf9c97dd0f6b64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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 write a