mirror of
https://github.com/vbatts/bitorchestra.git
synced 2024-11-23 17:15:41 +00:00
7 lines
112 B
C
7 lines
112 B
C
int main() {
|
|
int t;
|
|
for (t = 0;;t++) {
|
|
putchar((t >> 6 | t | t >> (t >> 16)) * 10 + ((t >> 11) & 7));
|
|
}
|
|
}
|
|
|