With futures, this will change: user> (let [c1 (future (expensive-calc-1 10)) c2 (future (expensive-calc-2 20))] (+ (deref c1) (deref c2))) Calc 2 Calc 1 40 ...
確定! 回上一頁