Data update

This commit is contained in:
Ingy döt Net 2024-03-06 22:25:12 -08:00
parent ed705008a8
commit 0df55f9f24
2196 changed files with 32999 additions and 3075 deletions

View file

@ -7,7 +7,7 @@ public program()
var a2 := new string[]{"A","B","C"};
var a3 := new int[]{1,2,3};
for(int i := 0, i < a1.Length, i += 1)
for(int i := 0; i < a1.Length; i += 1)
{
console.printLine(a1[i], a2[i], a3[i])
};

View file

@ -9,7 +9,7 @@ public program
var zipped := a1.zipBy(a2,(first,second => first + second.toString() ))
.zipBy(a3, (first,second => first + second.toString() ));
zipped.forEach:(e)
zipped.forEach::(e)
{ console.writeLine:e };
console.readChar();