articles/bytecode.md: fix code here

This commit is contained in:
tocariimaa 2025-03-14 00:23:23 -03:00
parent 230c88be49
commit 75186390a0

View file

@ -39,7 +39,7 @@ function fact(n)
return res return res
end end
return fact(5) print(fact(5))
``` ```
We compile to bytecode and dump it with: We compile to bytecode and dump it with:
```sh ```sh