kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

continue_to_switch.toy (109B)


      1 fn main(): i64 {
      2 outer: switch 0 {
      3     0 {
      4       continue outer;
      5     }
      6     default {
      7     }
      8   }
      9   return 0;
     10 }