[ prog / sol / mona ]
frontpage - thread list - new thread - preferences - ?
#define loop(s,n,args...) for(int i=s;i<n;i++){args;}
There's no reason for the args, just do
args
#define loop(s, n) for (int __i = (s), __n = (n); __i < __n; ++__i)
VIP:
bbs.scm + MIT Scheme + SICP + Satori Mode