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