mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 05:31:06 +00:00
14 lines
201 B
C
14 lines
201 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char *argv[]) {
|
||
|
int i, d=0;
|
||
|
for (i=0; i < 10; ++i)
|
||
|
d += i;
|
||
|
|
||
|
printf("separator!\n");
|
||
|
|
||
|
for (i=0; i < 4; ++i)
|
||
|
printf("[%d]\n", d+i);
|
||
|
return 0;
|
||
|
}
|