kit

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

invalid_switch_strategy_hint.toy (103B)


      1 fn main(): i64 {
      2   switch @[.not_a_strategy] 1 {
      3     default {
      4       return 0;
      5     }
      6   }
      7   return 0;
      8 }