第九章:宏和元编程
macro define_method(name, content)
def {{name}}
{{content}}
end
end
define_method foo, 1
# This generates:
#
# def foo
# 1
# end
foo # => 1def foo
1
endLast updated
macro define_method(name, content)
def {{name}}
{{content}}
end
end
define_method foo, 1
# This generates:
#
# def foo
# 1
# end
foo # => 1def foo
1
endLast updated