view bin/rng @ 3368:4cc20236c6ad

<elliott> addquote <+kmc> Harry Potter and the Physical Impossibility of Death in the Mind of Someone Living
author HackBot
date Sat, 03 Aug 2013 21:13:16 +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