summary refs log tree commit diff
path: root/y
diff options
context:
space:
mode:
Diffstat (limited to 'y')
-rwxr-xr-xy13
1 files changed, 13 insertions, 0 deletions
diff --git a/y b/y
new file mode 100755
index 0000000..db15c4b
--- /dev/null
+++ b/y
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+
+N=$((1 + $RANDOM % 2))
+
+case $N in
+        1)
+                echo "y"
+                ;;
+	2)
+		echo "HONK"
+		;;
+esac
+