summary refs log tree commit diff
path: root/commands/wave
diff options
context:
space:
mode:
Diffstat (limited to 'commands/wave')
-rwxr-xr-xcommands/wave9
1 files changed, 9 insertions, 0 deletions
diff --git a/commands/wave b/commands/wave
new file mode 100755
index 0000000..a78c49c
--- /dev/null
+++ b/commands/wave
@@ -0,0 +1,9 @@
+#!/usr/local/bin/lua
+
+math.randomseed(os.time())
+local rand=math.random(2)
+if rand == 1 then
+	print("o/")
+else
+	print("\\o")
+end