view bin/rng @ 3535:00eb6588250a

<Roujo> echo echo I\'m afraid I can\'t do that, Dave > /hackenv/bin/rm
author HackBot
date Thu, 29 Aug 2013 20:07:44 +0000
parents c096bb536bb2
children
line wrap: on
line source

#!/usr/bin/env lua

math.randomseed(os.time())
W={}
for i,a in ipairs(arg) do
   for w in a:gmatch("[^%s]+") do
      table.insert(W, w)
   end
end
if #W>0 then
   print(W[math.random(#W)])
end