10 Feb
2008
10 Feb
'08
11:22 p.m.
On Feb 10, 2008 1:20 PM, Felipe Lessa <felipe.lessa@gmail.com> wrote:
Maybe
addProduct :: [Product] -> Product -> [Product] addProduct inventory p = p : delete p inventory
Oh, forget this, it will keep rewriting the tail of the list, which is a Bad Thing (TM). -- Felipe.