root/cobra/trunk/Tests/100-basics/402-branch.cobra
| Revision 1177, 207 bytes (checked in by chuck, 4 years ago) | |
|---|---|
|
|
| Line | |
|---|---|
| 1 | class Test |
| 2 | |
| 3 | def main is shared |
| 4 | |
| 5 | word as String = '' |
| 6 | |
| 7 | x as int = 2 |
| 8 | branch x |
| 9 | on 1 |
| 10 | word = 'one' |
| 11 | on 2 |
| 12 | word = 'two' |
| 13 | on 3 |
| 14 | word = 'three' |
| 15 | if x # .error. expecting |
| 16 | word = 'woops' |
Note: See TracBrowser
for help on using the browser.



