variables_attributions_1.txt 212 B

123456789101112
  1. fn main () {
  2. let x = 1;
  3. let _foo = if x == 5 {
  4. 42
  5. }
  6. else if x == 6 {
  7. 1337
  8. }
  9. else {
  10. 31337
  11. };
  12. }