1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2025-02-18 18:16:04 +00:00
bitorchestra/f1.c

8 lines
112 B
C
Raw Normal View History

2011-11-14 10:13:02 -05:00
int main() {
int t;
for (t = 0;;t++) {
putchar((t >> 6 | t | t >> (t >> 16)) * 10 + ((t >> 11) & 7));
}
}