initial commit via gitinitshit

This commit is contained in:
2025-09-17 19:06:11 -06:00
commit e4a53dfc51
5 changed files with 28 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
# Hello World 2.0 (Python)
A vast improvement on the classic Hello World program in Python3
[![make a wish...](assets/ungabunga.jpg)](https://www.youtube.com/watch?v=Depmuu3ZyKY)
## Usage
`python helloworld20.py`
### License
Distributed under the [WTFPL - The Do What the Fuck You Want to Public License](http://www.wtfpl.net/)
See [COPYING.txt](assets/COPYING.txt)
[![WTFPL](assets/wtfpl.png)](http://www.wtfpl.net/)
+12
View File
@@ -0,0 +1,12 @@
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
Version 2, December 2004
Everyone is permitted to copy and distribute verbatim or modified
copies of this license document, and changing it is allowed as long
as the name is changed.
DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. You just DO WHAT THE FUCK YOU WANT TO.
Binary file not shown.

After

Width:  |  Height:  |  Size: 61 KiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

+4
View File
@@ -0,0 +1,4 @@
def HelloWorld(message):
print(message)
HelloWorld("print")