mirror of
https://github.com/vbatts/bitorchestra.git
synced 2024-11-27 02:55:41 +00:00
8 lines
79 B
C
8 lines
79 B
C
|
|
main() {
|
|
int t;
|
|
for (t=0;;t++) {
|
|
putchar(t*((t>>12|t>>8)&63&t>>4));
|
|
}
|
|
}
|
|
|