Compare commits

..

2 Commits

Author SHA1 Message Date
PrincessPi 41ae2953ce migration 2026-05-26 21:54:05 -06:00
PrincessPi e4a53dfc51 initial commit via gitinitshit 2025-09-17 19:06:11 -06:00
6 changed files with 27 additions and 1 deletions
+11 -1
View File
@@ -1,2 +1,12 @@
# HelloWorld2.0-Python3
# 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")
View File