source:
CIVL/examples/choose.cvl@
9ae277d
| Last change on this file since 9ae277d was 34760dc, checked in by , 14 years ago | |
|---|---|
|
|
| File size: 158 bytes | |
| Rev | Line | |
|---|---|---|
| [34760dc] | 1 | |
| 2 | int n; | |
| 3 | float x; | |
| 4 | ||
| 5 | void main() { | |
| 6 | l1: | |
| 7 | _choose { | |
| 8 | _when (n>2) { x=2; goto l2; } | |
| 9 | _when (n>1) { x=1; goto l2; } | |
| 10 | default: {x=0; goto l2; } | |
| 11 | } | |
| 12 | l2: ; | |
| 13 | } |
Note:
See TracBrowser
for help on using the repository browser.
