Comment on Write a program that makes 2 + 2 = 5Comments−social_monad12ySimple solution in R: > '%+%' <- get( '+') > '+' <- function( e1, e2) 1 %+% e1 %+% e2 > 2+2 [1] 5 Regards
Comments
Simple solution in R:
Regards