about summary refs log tree commit diff
path: root/examples
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-01-28 00:40:59 +0100
committerBaitinq <[email protected]>2025-01-28 00:44:00 +0100
commitdd7084f9cffdce559b96c31d7bf21d2e3ebe5340 (patch)
tree06020f0c7db8c0c33d0e249787833bd3c3c66006 /examples
parentCodegen: Cleanup (diff)
downloadpry-lang-dd7084f9cffdce559b96c31d7bf21d2e3ebe5340.tar.gz
pry-lang-dd7084f9cffdce559b96c31d7bf21d2e3ebe5340.tar.bz2
pry-lang-dd7084f9cffdce559b96c31d7bf21d2e3ebe5340.zip
Codegen: Get printf working
Diffstat (limited to 'examples')
-rw-r--r--examples/0.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/0.src b/examples/0.src
index d73769a..a55a285 100644
--- a/examples/0.src
+++ b/examples/0.src
@@ -1,7 +1,7 @@
 /* HELLO! Welcome to the unnamed language */
 
 let main = () => {
-	print(2);
+	printf(2);
 	
 	return 1;
 };