Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,4 @@
|
|||
a=(1,2,3,4,5)
|
||||
b=Cons(a, (6,7,8),a)
|
||||
Print b
|
||||
1 2 3 4 5 6 7 8 1 2 3 4 5
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
Dim Base 0, A(2,2)=1, B(1,2)=6
|
||||
A()=Cons(A(), B(), A(), B())
|
||||
\\ Restore the dimensions (without erasing items)
|
||||
Dim A(Dimension(A(),1)/2, 2)
|
||||
For I=0 to Dimension(A(),1)-1 {
|
||||
For j=0 to Dimension(A(),2)-1 {
|
||||
Print A(i, j),
|
||||
}
|
||||
Print
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
Dim OLE Base 0, A(2,2)=1, B(1,2)=6
|
||||
A()=Cons(A(), B(), A(), B())
|
||||
\\ Restore the dimensions (without erasing items)
|
||||
Dim A(Dimension(A(),1)/2, 2)
|
||||
For I=0 to Dimension(A(),1)-1 {
|
||||
For j=0 to Dimension(A(),2)-1 {
|
||||
Print A(i, j),
|
||||
}
|
||||
Print
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue