リストの n 番目の要素を取り出す
> (nth 0 '(1 2 3 4 5))
1
> (nth 1 '(1 2 3 4 5))
2
> (nth 2 '(1 2 3 4 5))
3
> (nth 3 '(1 2 3 4 5))
4
> (nth 4 '(1 2 3 4 5))
5
> (nth 5 '(1 2 3 4 5))
Error: car: argument 1 must be: pair
Sample code collection
リストの n 番目の要素を取り出す
> (nth 0 '(1 2 3 4 5))
1
> (nth 1 '(1 2 3 4 5))
2
> (nth 2 '(1 2 3 4 5))
3
> (nth 3 '(1 2 3 4 5))
4
> (nth 4 '(1 2 3 4 5))
5
> (nth 5 '(1 2 3 4 5))
Error: car: argument 1 must be: pair