Guest User

Untitled

a guest
Mar 24th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. setMethod('+', signature("MyClass"), function(e1, e2)1)
  2.  
  3. setMethod('+', signature("R6"), function(e1, e2)1)
  4.  
  5. a = MyClass$new()
  6. a + a
  7.  
  8. `+.MyClass` = function(e1, e2) { return (1) }
Add Comment
Please, Sign In to add comment