Commit 311f4a23 authored by Yuji Yamano's avatar Yuji Yamano

Make backquote work with the latest mruby. Fixed #75

parent f8a3af80
module Kernel module Kernel
def self.`(cmd) def `(cmd)
IO.popen(cmd) { |io| io.read } IO.popen(cmd) { |io| io.read }
end end
......
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