User`s manual

196 digi.com Keywords
break
Jumps out of a loop, if, or case statement.
while( expression ){
...
if( condition ) break;
}
switch( expression ){
...
case 3:
...
break;
...
}
c
Use in assembly block to insert one Dynamic C instruction.
#asm
InitValues::
c start_time = 0;
c counter = 256;
ld hl,0xa0;
ret
#endasm
case
Identifies the next case in a switch statement.
switch( expression ){
case constant:
...
case constant:
...
case constant:
...
...
}