# code.rb
def hello
puts "hello"
end
:$ ruby code.rb
控制台上没有任何输出!我正在使用 Ubuntu 13.04。
如果我在 IRB 中运行相同的代码,它就可以工作!
# code.rb
def hello
puts "hello"
end
:$ ruby code.rb
控制台上没有任何输出!我正在使用 Ubuntu 13.04。
如果我在 IRB 中运行相同的代码,它就可以工作!
你必须调用你的代码,你只是定义一个方法:
# code.rb
def hello
puts "hello"
end
hello
$ ruby code.rb
在这种情况下,您需要hello
在脚本中调用该方法:
def hello
puts "hello"
end
hello
你定义了一个方法,但你从不调用它。试试这个:
# code.rb
def hello
puts "hello"
end
hello
运行:
:$ ruby code.rb