mirror of
https://gitlab.com/camelot/kickc.git
synced 2025-08-07 22:25:13 +00:00
10 lines
263 B
C
10 lines
263 B
C
// Test an empty statement ';'
|
|
|
|
void main() {
|
|
// Start with an empty statement
|
|
;
|
|
// Fill screen with '*'. Body is an empty statement.
|
|
for( char * screen = 0x0400; screen<0x400+1000; (*screen++)='*') ;
|
|
// End with two empty statements
|
|
; ;
|
|
} |