variables_attributions_3.txt 238 B

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