
25 Jan
2012
25 Jan
'12
5:04 p.m.
On Wed, Jan 25, 2012 at 7:38 PM, Yves Parès
But I haven't found a way to tell GHCI to fully evaluate 'x' but _not_ print its value.
let {a = htrace "a" 12; b = htrace "b" 29; c = htrace "c" 10; d = htrace "d" 90; x = htrace "," (htrace "+" (a+b), htrace "*" (c*d)) } :force x ,
Use the :force, Yves! + a b * c d x = (41,900) Cheers! =) -- Felipe.