Skip to content

Instantly share code, notes, and snippets.

@Killerkiwi2005
Killerkiwi2005 / helloworld.rb
Last active February 7, 2018 02:37
Hello World
# Hello World Program in Ruby
class Test
attr_accessor :text
def initialize
@text = 'Hello World'
end
end
# Hello World Program in Ruby
class Test
attr_accessor :text
def initialize
@text = 'Hello World'
end
end