Skip to content

Instantly share code, notes, and snippets.

@nonlogos
Last active April 5, 2019 17:07
Show Gist options
  • Save nonlogos/dc0b0674d05dde685ce08dd99c637da8 to your computer and use it in GitHub Desktop.
Save nonlogos/dc0b0674d05dde685ce08dd99c637da8 to your computer and use it in GitHub Desktop.
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()
class HelloWorld
def initialize(name)
@name = name.capitalize
end
def sayHi
puts "Hello !"
end
end
hello = HelloWorld.new("World")
hello.sayHi
This is hello_world_python.txt

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

This is a new placeholder file.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment