説明
reverseは、指定されたリストを逆順に並べ替えてできるリストを作成する関数です。
構文
a0 = reverse(a1)
戻り値
リストa1 の逆順のリストを返します。
使用例
reverse((1, 2, 3)) → (3, 2, 1)