Lisp$version
- 構文
- (Lisp$version)
- 機能
- Lispエンジンのバージョンを数値の文字列で返す。
- (vle-lispversion) の利用が推奨されている。
- 引数
-
- なし
- 戻り値
- Lispエンジンのバージョンを表す数値文字列
- サンプル
<syntaxhighlight lang="lisp" line> (Lisp$version) "22.0 (x64)" (vle-lispversion) ; "22.0 (x64)"
(atof (Lisp$version)) ; 非推奨 22.0
</syntaxhighlight>
関連事項