Skip to content

Instantly share code, notes, and snippets.

@zah
Created August 29, 2011 19:44
Show Gist options
  • Save zah/1179206 to your computer and use it in GitHub Desktop.
Save zah/1179206 to your computer and use it in GitHub Desktop.
#the problem is this
proc `+=`, 10, left (a: int, b: int)
proc `+=`, 20, right (a: string, b: string)
# what about this?
operator `+=`, 10, left
proc `+=` (a: int, b: int)
proc `+=` (a: string, b: string)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment