class Annyeong
Public Class Methods
hi()
click to toggle source
# File lib/annyeong.rb, line 3 def self.hi p "Annyeong sesang!" #hello world! end
hi_to_you(your_name)
click to toggle source
# File lib/annyeong.rb, line 7 def self.hi_to_you(your_name) p "Annyeong #{your_name}!" #hello your name! end