多分Playが動かないの、AiScriptのアップデートで破滅的変更が入っているので、それ起因っぽそう
If you have a fediverse account, you can quote this note from your own instance. Search https://misskey.io/notes/afei6u826faf07e6 on your instance and quote it. (Note that quoting is not supported in Mastodon.)
match文は変わってるらしい
match x {
1 => "a"
2 => "b"
* => "c"
}だったものがv1あたりでmatch x {
case 1 => "a"
case 2 => "b"
default => "c"
}みたいな構文に変更された?