Data update
This commit is contained in:
parent
ed705008a8
commit
0df55f9f24
2196 changed files with 32999 additions and 3075 deletions
|
|
@ -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])
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue