aboutsummaryrefslogtreecommitdiff
path: root/tests/old/buffer.lua
blob: 3309aedf235a35c25a82d3d110a8254f28cc014e (plain)
1
2
3
4
5
6
7
8
9
llby = require "lullaby"

b = llby.thread.buffer(llby.crypto.md5())

print(b.update(b:get(), "meow"):final())
print(b.update(b:get(), "meow"):final())
b:mod(function(this) return this:update("meow") end)
print(b.update(b:get(), "meow"):final())