Skip to content

Instantly share code, notes, and snippets.

@corruptmem
Created January 3, 2012 20:10
Show Gist options
  • Save corruptmem/1556671 to your computer and use it in GitHub Desktop.
Save corruptmem/1556671 to your computer and use it in GitHub Desktop.
module CameronMixin
def first_two_chars
return self[0,2]
end
end
x = "hello"
x.extend(CameronMixin)
puts x.first_two_chars()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment