Created
March 19, 2017 14:50
-
-
Save davetromp/1f9c8426b1ac0b6934c1227973f3dd9f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python3 | |
""" | |
http://www.davetromp.net/2017/03/learn-how-to-code-with-python-lesson-1.html | |
Learn how to code with python: Lesson 1 - Hello World! | |
Lesson 1 | |
Basics | |
Programming paradigms | |
- Scripting *** | |
- Procedural ** | |
- Object oriented * | |
- Functional | |
""" | |
print("Hello world!") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment