「Last (autolisp)」の版間の差分

提供:GizmoLabs - だいたい CAD LISP なサイト
編集の要約なし
 
(「Last」を「Last (autolisp)」へ移動)
(相違点なし)

2011年7月12日 (火) 08:25時点における版

構文
(last lst)
機能
リストの最後の要素を返す。
引数
  • lst : リスト。
戻り値
アトムまたはリスト。
サンプル
(last '(a b c d e))
E
---
(last '("first" "second" ("third" "fourth")))
("third" "fourth")