1
0
Fork 0
mirror of https://github.com/vbatts/bitorchestra.git synced 2024-11-27 02:55:41 +00:00
bitorchestra/f6.c
2011-11-14 10:34:33 -05:00

12 lines
198 B
C

main(t){
int y,x;
for(t=0;;t++)
{
x=t*"6689"[t>>16&3]/24&127;
y=t&16383;
if (y==0 || x==0)
continue;
putchar((30000000000/(y)&1)*35+(x)*y/400000000+((t>>8^t>>10|1>>14|x)&63));
}
}