Skip to content

Instantly share code, notes, and snippets.

@supki
Created May 27, 2013 17:29
Show Gist options
  • Save supki/5658203 to your computer and use it in GitHub Desktop.
Save supki/5658203 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
# -*- coding: utf-8 -*-
def f
s = gets.chomp
z = Class.new
z.class_eval do
define_method :ma do
s * 2
end
define_method :mb do
s.reverse
end
end
z.new
end
a = f
puts a.ma
puts a.mb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment