diff --git a/articles/bytecode.md b/articles/bytecode.md index 0d77f68..c4fe7f3 100644 --- a/articles/bytecode.md +++ b/articles/bytecode.md @@ -39,7 +39,7 @@ function fact(n) return res end -return fact(5) +print(fact(5)) ``` We compile to bytecode and dump it with: ```sh