in.txt 404 B

1234567891011121314151617181920212223242526
  1. fn main () {
  2. let x = read_line();
  3. if x == 5 {
  4. let _foo: i32 = 5;
  5. }
  6. else if x == 6 {
  7. let _foo: u128 = 6;
  8. }
  9. else {
  10. let _foo = 0;
  11. }
  12. }
  13. fn _cenas () {
  14. let x: u64 = 1337;
  15. ;;;;;;;;;
  16. let _foo = if x == 5 {
  17. 42;
  18. }
  19. else if x == 6 {
  20. -1337;
  21. }
  22. else {
  23. 31337;
  24. };;;;;;;
  25. }