1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2025-08-07 22:25:13 +00:00
Files
kickc/src/test/kc/stmt-empty.c
2020-06-28 00:16:25 +02:00

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
; ;
}