let fun soma pid = receive {x,y} -> pid ! (x + y) end in let var pid = spawn(soma, [self()]) in pid ! {2,3}, receive x -> x end