about summary refs log tree commit diff
path: root/examples/-1.pry
diff options
context:
space:
mode:
Diffstat (limited to 'examples/-1.pry')
-rw-r--r--examples/-1.pry4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/-1.pry b/examples/-1.pry
index 5d7b65c..f5b7928 100644
--- a/examples/-1.pry
+++ b/examples/-1.pry
@@ -6,8 +6,8 @@ let test = () => i64 {
 	return 2;
 };
 
-let main = () => i64 {
-	printf("HELLO WORLD!\n");
+let main = (argc: i64) => i64 {
+	printf("HELLO WORLD %d!\n", argc);
 	return test();
 };