/* Karplus-Strong string synthesis (“Digitar”) in 1 line of C. ./ks1 | aplay */ s[72]={512};main(i){for(;;i%=72)s[i]+=s[(i+1)%72],putchar(s[i++]/=2);}