Skip to content

Instantly share code, notes, and snippets.

View Ryanwall15's full-sized avatar

Ryan Wallerius Ryanwall15

  • Avanade
  • Seattle, WA
View GitHub Profile
@Ryanwall15
Ryanwall15 / hello_world.rb
Created October 9, 2019 21:10
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")
@Ryanwall15
Ryanwall15 / hello_world.rb
Created October 9, 2019 20:26
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")
@Ryanwall15
Ryanwall15 / hello_world.rb
Created October 9, 2019 20:17
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")
@Ryanwall15
Ryanwall15 / hello_world.rb
Created October 9, 2019 19:31
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")
@Ryanwall15
Ryanwall15 / hello_world.rb
Created October 9, 2019 19:00
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")