view bin/rng @ 11773:5da0815ceb07 draft

<fizzie> mkx bin/explain//wn "${1:-explain}" -n1 -hypen -hypev | sed -e \'1,/^Sense/d;/^$/,$d\' | tr \'\\n\' \' \' | sed -e \'s/ */ /g\'
author HackEso <hackeso@esolangs.org>
date Wed, 10 Apr 2019 02:32:46 +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