summary refs log tree commit diff
path: root/wave
blob: a78c49c27e13ec11153f34caa85ffaa70c87adab (plain)
1
2
3
4
5
6
7
8
9
#!/usr/local/bin/lua

math.randomseed(os.time())
local rand=math.random(2)
if rand == 1 then
	print("o/")
else
	print("\\o")
end