match文は変わってるらしい

match x {  
    1 => "a"  
    2 => "b"  
    * => "c" 
}
だったものがv1あたりで
match x {  
    case 1 => "a"  
    case 2 => "b"  
    default => "c"
}
みたいな構文に変更された?

0

If you have a fediverse account, you can quote this note from your own instance. Search https://misskey.io/notes/afei9cabzvgs07q1 on your instance and quote it. (Note that quoting is not supported in Mastodon.)