aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hodgden <chrhodgden@live.com>2022-11-26 17:54:00 -0600
committerChristian Hodgden <chrhodgden@live.com>2022-11-26 17:54:00 -0600
commit6931ff23f35f8fdb03f516b2beb58c344caaba85 (patch)
tree9dc54ff8117d9adef2d0991678ad7a66daa81e01
initial commit
-rw-r--r--README.md4
-rw-r--r--hw.py10
2 files changed, 14 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..29f7610
--- /dev/null
+++ b/README.md
@@ -0,0 +1,4 @@
+#Ultra Hello World Program
+
+Correctly identifies greeting to user.
+
diff --git a/hw.py b/hw.py
new file mode 100644
index 0000000..003a965
--- /dev/null
+++ b/hw.py
@@ -0,0 +1,10 @@
+import random
+
+chk = random.randint(0,1)
+
+#add color for chk case.
+if chk:
+ print("heyy sexy!")
+else:
+ print("Hello World!")
+