Skip to content

Commit

Permalink
create リストの要素の順序を逆転する.
Browse files Browse the repository at this point in the history
  • Loading branch information
kayhide committed Apr 17, 2017
1 parent 8d1f8e4 commit 4b78c0f
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
リストの要素の順序を逆転する
============================

リストの順序を逆転するには`reverse`を使います。

```haskell
> reverse [0..3]
[3,2,1,0]
```

0 comments on commit 4b78c0f

Please sign in to comment.