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

8 lines
79 B
C

main() {
int t;
for (t=0;;t++) {
putchar(t*((t>>12|t>>8)&63&t>>4));
}
}