eqnoob123·12 yıl önce·discussHere's one in Ocaml that modifies the + operatorlet (+) x y = match (x,y) with (2,2) -> 5 | (x,y) -> x+y;;