Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,27 @@
|
|||
Module Checkit {
|
||||
\\ old type loop
|
||||
For i=1 to 10
|
||||
Print i;
|
||||
If i=10 Then Exit For
|
||||
Print ", ";
|
||||
Next i
|
||||
Print
|
||||
\\ fast type loop. Continue exit block, without breaking loop.
|
||||
For i=1 to 10 {
|
||||
Print i;
|
||||
If i=10 Then Continue
|
||||
Print ", ";
|
||||
}
|
||||
Print
|
||||
Print
|
||||
i=0
|
||||
{
|
||||
loop \\ this mark block for loop, each time need to mark
|
||||
i++
|
||||
Print i;
|
||||
If i=10 Then Exit ' so now we use exit to break loop
|
||||
Print ", ";
|
||||
}
|
||||
Print
|
||||
}
|
||||
Checkit
|
||||
Loading…
Add table
Add a link
Reference in a new issue