Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚开始使用 ruby,文件中有以下代码ex6.rb:
ex6.rb
class Newclass def funct() puts "inside funct" end end
当我尝试使用 command: 从命令提示符运行 它时ex6.rb,它不会打印任何东西。我如何想 dto 在文件中定义一个函数以便能够从命令提示符运行它?
你定义了一个类和一个方法......但你没有调用它。您需要添加如下调用:
NewClass.new.funct
为了看到你的文字打印。