diff options
| author | 2025-02-07 17:56:25 +0100 | |
|---|---|---|
| committer | 2025-02-07 17:56:25 +0100 | |
| commit | 61372b981933236805ad1464b12e138ec7fb7d5d (patch) | |
| tree | 1a43bc73d3785fbe656e74b4a1b8fd69cbaefe93 /bench.lua | |
| parent | 6047f56db82852f07e4f7e308af69fa80b1cc259 (diff) | |
parser: make read callback be buffered
Diffstat (limited to 'bench.lua')
| -rw-r--r-- | bench.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,4 +1,4 @@ -function fib(n) +local function fib(n) if n < 2 then return n end return fib(n - 2) + fib(n - 1) end |