|
|
1.1 misha 1: @main[]
2: ^do(1000)
3: ^do(1002)
4:
5: @do[iCount]
6: ${iCount}:
7: ^try{
8: ^rem{ '\2' because of if+call on every iteration, '-2' because of do+try }
9: ^call($iCount\2-2)
10: OK
11: }{
12: $exception.handled(1)
13: $exception.comment
14: }
15: <br />
16:
17: @call[iLevel]
18: $iLevel($iLevel-1)
19: ^if($iLevel>0){
20: ^call[$iLevel]
21: }