Skip to content

Ruby で書かれた自作クラスの追加

Ko-ichiro Sugiyama edited this page Jul 9, 2022 · 5 revisions

追加方法

Ruby で書かれた自作クラスを追加する.例として自作クラスの名前を greeter.rb とする

greeter.rb

class Greeter
  def hello     #メソッド
    puts "Hello World"
  end
end
Clone this wiki locally