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);
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.