conditionals examples

This commit is contained in:
Romain Paquet 2024-03-08 17:38:53 +01:00
parent 511be952aa
commit 8e3994f582
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,6 @@
fn main() {
x = 0;
if true {
set x = 42;
};
}