mirror of
https://github.com/RevCurtisP/C02.git
synced 2024-11-01 16:04:59 +00:00
13 lines
117 B
Plaintext
13 lines
117 B
Plaintext
/* Test If/Then/Else */
|
|
|
|
#pragma origin $0200
|
|
|
|
char b,c,d,e;
|
|
|
|
if (b:-) b=c;
|
|
else if (!b) b=d;
|
|
else b=e;
|
|
goto exit;
|
|
|
|
|