Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
チャペルにはreverse()配列の演算子がありますが、ドメインで機能させることができないようです
reverse()
var v = {1..8}; for w in v { writeln(w); } // poops for w in reverse(v) { writeln(w); }
どうすれば後戻りできますか?