1
0
mirror of https://github.com/RevCurtisP/C02.git synced 2024-09-30 18:57:25 +00:00
C02/test/define.c02
2018-01-28 14:47:06 -05:00

9 lines
91 B
Plaintext

/* Test C02 define directive */
#define TRUE = $FF
#define FALSE = 0
char b;
b = #TRUE;