Commit 5a8e76cc authored by h2so5's avatar h2so5

Add NotImplementedError for Kernel.` and Kernel#`

parent 87cd4c5e
......@@ -3,6 +3,17 @@
#
# ISO 15.3.1
module Kernel
# 15.3.1.2.1
def self.`(s)
raise NotImplementedError.new("` not implemented")
end
# 15.3.1.3.5
def `(s)
Kernel.`(s)
end
##
# Calls the given block repetitively.
#
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment