a statistic I thought of: estimate of lines of non-comment code (after reformatting by ghc) : $ ghc IntegerInTermsOfInt.hs -ddump-parsed | wc -l 1084 (This is the only way I've come up with so far, to easily exclude the many and various comments, in a line-count.) ISaac