Hacker News new | ask | show | jobs
by social_monad 4398 days ago
Simple solution in R:

   > '%+%' <- get( '+')
   > '+' <- function( e1, e2) 1 %+% e1 %+% e2
   > 2+2
   [1] 5
Regards