From 75186390a017fe9db1596d706eceb4ffaf83c2b6 Mon Sep 17 00:00:00 2001 From: tocariimaa Date: Fri, 14 Mar 2025 00:23:23 -0300 Subject: [PATCH] articles/bytecode.md: fix code here --- articles/bytecode.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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