Skip to content

Instantly share code, notes, and snippets.

@thbar
Created August 26, 2009 07:12
Show Gist options
  • Save thbar/175360 to your computer and use it in GitHub Desktop.
Save thbar/175360 to your computer and use it in GitHub Desktop.
# works (ie: raise the error) using "[ruby|ir] top-level-methods.rb". Raise "missing log method" under silverlight.
def log(msg)
raise msg
end
class TestClass
def initialize
log("hello using top-level method")
end
end
TestClass.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment