Created
February 2, 2016 22:51
-
-
Save joho/647892c0aa1793afeca9 to your computer and use it in GitHub Desktop.
For @quamen who keeps putting his js in his rubby
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Kernel | |
class FakeConsole | |
def log(o) | |
puts "not javascript lol, but here you go #{p}" | |
end | |
end | |
def console | |
FakeConsole.new | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
log(*p)
, right?