aboutsummaryrefslogtreecommitdiff
path: root/tests/s.lua
blob: 929c12759c9df231940a03313547f7a30a0147cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local t = function (a) end

require "llib"

a = llib.crypto.md5()

for i = 1,200 do
  --llib.io.pprint(function (a) end)
  llib.thread.async(function(a) end)--:await()
end

if a:final() ~= "d41d8cd98f00b204e9800998ecf8427e" then
  print(a:final())
end