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.py
Created October 8, 2019 21:13
Hello World Examples
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
@Ryanwall15
Ryanwall15 / hello_world.py
Created October 8, 2019 21:13
Hello World Examples
class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
@Ryanwall15
Ryanwall15 / hello_world.rb
Created October 8, 2019 21: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 8, 2019 21:27
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 8, 2019 21:27
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 8, 2019 21:38
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 8, 2019 21:38
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")
@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")