comparison rng?dl=1 @ 1156:4808f1da5185

<GreyKnight> fetch https://dl.dropbox.com/s/bxsata7guqrbql4/rng?dl=1
author HackBot
date Fri, 14 Dec 2012 23:26:22 +0000
parents
children
comparison
equal deleted inserted replaced
1155:84422df37870 1156:4808f1da5185
1 #!/usr/bin/env lua
2
3 math.randomseed(os.time())
4 W={}
5 for i,a in ipairs(arg) do
6 for w in a:gmatch("[^%s]+") do
7 table.insert(W, w)
8 end
9 end
10 if #W>0 then
11 print(W[math.random(#W)])
12 end