Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
|
|
@ -0,0 +1,26 @@
|
|||
Module CheckIt {
|
||||
Dim Base 1, A(12)
|
||||
Mult=lambda (n)-> {
|
||||
Flush ' empty stack
|
||||
For i=1 to n : Data i*n : Next i
|
||||
=Array([]) ' copy stack in an array, and return a pointer
|
||||
}
|
||||
i=Each(A())
|
||||
Print " |";
|
||||
while i {
|
||||
Print Format$("{0:0:-4}",i^+1);
|
||||
A(i^+1)=Mult(i^+1)
|
||||
}
|
||||
Print
|
||||
Print "--+"+string$("-",4*12)
|
||||
For i=1 to 12 {
|
||||
Print Format$("{0:0:-2}|",i);
|
||||
For j=1 to 12 {
|
||||
If len(A(j)())>=i then {
|
||||
Print Format$("{0:0:-4}",A(j)(i-1));
|
||||
} Else Print " ";
|
||||
}
|
||||
Print
|
||||
}
|
||||
}
|
||||
CheckIt
|
||||
Loading…
Add table
Add a link
Reference in a new issue