From eb2c67f7d54708fa293c14ec4819c879b122bdf0 Mon Sep 17 00:00:00 2001 From: vanten-s Date: Wed, 27 Sep 2023 09:24:42 +0200 Subject: [PATCH] Fixed Example Code --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5447333..dd7c4ca 100644 --- a/README.md +++ b/README.md @@ -29,12 +29,12 @@ fn main { } test(a); exit(); -} +}; fn test output { - let number_to_output = output; - out(number_to_output); -} + let numberToOutput = output; + out(numberToOutput); +}; ``` This code prints 3 and then 2.