This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
spacemacs/layers/+lang/ruby/test.rb

20 lines
262 B
Ruby
Raw Normal View History

class HelloWorld
# Top level class
attr_reader :hello_s
def initialize(hello_s:)
@hello_s = hello_s
end
def say_hello
puts hello_s
end
def run
say_hello
end
end
hello_world = HelloWorld.new(hello_s: 'Hello')
hello_world.say_hello