summary refs log tree commit diff
path: root/examples/4.src
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-30 23:39:16 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-30 23:39:32 +0100
commit8d5f212c9875818c75e3007ecadadfd112a3438d (patch)
treefc5057a9b83c758a2bc16540b356a5f96afaf736 /examples/4.src
parentCodegen: Get addition kind of working (diff)
downloadinterpreter-8d5f212c9875818c75e3007ecadadfd112a3438d.tar.gz
interpreter-8d5f212c9875818c75e3007ecadadfd112a3438d.tar.bz2
interpreter-8d5f212c9875818c75e3007ecadadfd112a3438d.zip
Codegen: Fix bug calling printf
Diffstat (limited to 'examples/4.src')
-rw-r--r--examples/4.src1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/4.src b/examples/4.src
index 0dd81ae..b955155 100644
--- a/examples/4.src
+++ b/examples/4.src
@@ -3,7 +3,6 @@ let print_one = () => {
 	return 4;
 };
 
-
 let main = () => {
 	let y = print_one() + 2;