Supreme Court rules on software patent case Alice Corp v. CLS Bank [pdf] 12 years ago
When I saw the headline I wished it was Alice Corp v. Bob Bank
HN user
When I saw the headline I wished it was Alice Corp v. Bob Bank
Here's one in Ocaml that modifies the + operator
let (+) x y = match (x,y) with (2,2) -> 5 | (x,y) -> x+y;;