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 19:00
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 18:58
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 18:58
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 18:34
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 18:32
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 17:54
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 17:48
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 17:14
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 17:14
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 17:13
Hello World Examples
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")