Fixed Example Code

This commit is contained in:
vanten-s 2023-09-27 09:24:42 +02:00
parent 0d27ee5491
commit eb2c67f7d5
Signed by: vanten-s
GPG key ID: DE3060396884D3F2

View file

@ -29,12 +29,12 @@ fn main {
} }
test(a); test(a);
exit(); exit();
} };
fn test output { fn test output {
let number_to_output = output; let numberToOutput = output;
out(number_to_output); out(numberToOutput);
} };
``` ```
This code prints 3 and then 2. This code prints 3 and then 2.