1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2024-11-23 17:15:41 +00:00
bitorchestra/f1.c
2011-11-14 10:13:02 -05:00

7 lines
112 B
C

int main() {
int t;
for (t = 0;;t++) {
putchar((t >> 6 | t | t >> (t >> 16)) * 10 + ((t >> 11) & 7));
}
}