Skip to content

Instantly share code, notes, and snippets.

@Ryanwall15
Last active October 10, 2019 18:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ryanwall15/1573591eb45b97d9dd1f5b1ccb0bd342 to your computer and use it in GitHub Desktop.
Save Ryanwall15/1573591eb45b97d9dd1f5b1ccb0bd342 to your computer and use it in GitHub Desktop.
Hello World Examples

Run ruby hello_world.rb or python hello_world.py to print Hello World

class HelloWorld:
def __init__(self, name):
self.name = name.capitalize()
def sayHi(self):
print "Hello " + self.name + "!"
hello = HelloWorld("world")
hello.sayHi()
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")
hello.sayHi
This is a new placeholder file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment