commit e4a53dfc51a277f9d50302b6ee1832a8862a61a8 Author: PrincessPi3 Date: Wed Sep 17 19:06:11 2025 -0600 initial commit via gitinitshit diff --git a/README.md b/README.md new file mode 100644 index 0000000..ebbdd8f --- /dev/null +++ b/README.md @@ -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/) \ No newline at end of file diff --git a/assets/COPYING.txt b/assets/COPYING.txt new file mode 100644 index 0000000..3315b83 --- /dev/null +++ b/assets/COPYING.txt @@ -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. + diff --git a/assets/ungabunga.jpg b/assets/ungabunga.jpg new file mode 100644 index 0000000..4803d2a Binary files /dev/null and b/assets/ungabunga.jpg differ diff --git a/assets/wtfpl.png b/assets/wtfpl.png new file mode 100644 index 0000000..d039d0b Binary files /dev/null and b/assets/wtfpl.png differ diff --git a/helloworld20.py b/helloworld20.py new file mode 100644 index 0000000..e80840d --- /dev/null +++ b/helloworld20.py @@ -0,0 +1,4 @@ +def HelloWorld(message): + print(message) + +HelloWorld("print")