Data update

This commit is contained in:
Ingy döt Net 2025-06-11 20:16:52 -04:00
parent 72eb4943cb
commit 4d5544505c
2347 changed files with 62432 additions and 16731 deletions

View file

@ -0,0 +1,8 @@
import ballerina/io;
public function main() {
foreach int i in 1...5 {
foreach int j in 1...i { io:print("*"); }
io:println();
}
}

View file

@ -0,0 +1,9 @@
=REDUCE(
"", SEQUENCE(6),
LAMBDA(outer, i,
VSTACK(
outer,
REDUCE("", SEQUENCE(i), LAMBDA(inner, j, inner & "*"))
)
)
)

View file

@ -0,0 +1,4 @@
MODULE check {
FOR I=1 TO 5:FOR I=I to 1:?"*";:NEXT:?:NEXT
}
check

View file

@ -0,0 +1,17 @@
module check {
For i=1 to 5
For j=1 to i
Print "*";
Next j
Print
Next i
Print "End1"
For i=1 to 5 {
For j=1 to i {
Print "*";
}
Print
}
Print "End2"
}
check

View file

@ -1,14 +0,0 @@
For i=1 to 5
For j=1 to i
Print "*";
Next j
Print
Next i
Print "End1"
For i=1 to 5 {
For j=1 to i {
Print "*";
}
Print
}
Print "End2"