about summary refs log tree commit diff
path: root/examples
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-01-30 00:47:30 +0100
committerBaitinq <[email protected]>2025-01-30 00:47:30 +0100
commit5c58c0b9de67f14106be1365f2177f990e5b2711 (patch)
treee0465ef0581f42d56726bf95136340d6ab7024c6 /examples
parentCodegen: Support function calls in return statement (diff)
downloadpry-lang-5c58c0b9de67f14106be1365f2177f990e5b2711.tar.gz
pry-lang-5c58c0b9de67f14106be1365f2177f990e5b2711.tar.bz2
pry-lang-5c58c0b9de67f14106be1365f2177f990e5b2711.zip
Examples: Fix example 2
Diffstat (limited to 'examples')
-rw-r--r--examples/2.src2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/2.src b/examples/2.src
index 96b0596..561d626 100644
--- a/examples/2.src
+++ b/examples/2.src
@@ -3,7 +3,7 @@ let main = () => {
 
 	test = 7;
 
-	printf(test);
+	print(test);
 
 	return test;
 };