Data update

This commit is contained in:
Ingy döt Net 2025-02-27 18:35:13 -05:00
parent 8e4e15fa56
commit 72eb4943cb
1853 changed files with 35514 additions and 9441 deletions

View file

@ -2,6 +2,6 @@ void main() {
var val = 1024;
while (val > 0) {
print(val);
val >>= 2;
val >>= 1;
}
}

View file

@ -1,7 +1,7 @@
void main() {
num val = 1024;
var val = 1024;
while (val > 0) {
print(val);
val /= 2;
val ~/= 2;
}
}

View file

@ -1,7 +1 @@
monad define 1024
while. 0 < y do.
smoutput y
y =. <. -: y
end.
i.0 0
)
0 0$([ echo)@<.@-:^:*^:_. ]1024

View file

@ -0,0 +1,7 @@
monad define 1024
while. 0 < y do.
echo y
y =. <. -: y
end.
i.0 0
)

View file

@ -1,8 +0,0 @@
Module Checkit {
Def long A=1024
While A>0 {
Print A
A/=2
}
}
Checkit

View file

@ -1 +0,0 @@
Module Online { A=1024&: While A>0 {Print A: A/=2}} : OnLine

View file

@ -0,0 +1,31 @@
Module Checkit {
Long A=1024
While A>0 {
Print A
A/=2
if a<500 then goto alfa
}
Print "not that"
alfa:
Print "ok"
}
Checkit
Module Checkit2 {
Long A=1024
While A>0
Print A
A/=2
if a<500 then 10
End While
Print "not that"
10 Print "ok"
}
Checkit2
Module Checkit3 {
A=(1,2,3,4,5)
B=Each(A, -1, 1)
While B
Print Array(B), B^
End While
}
Checkit3