作成日
2014/04/19最終更新
2018/04/13記事区分
一般公開関連記事
- elispの真偽値について以下はすべてEshell上での実行結果例です。 elispの偽はnilのみ elispにおいて、偽はnil (および「nil」と同等の概念である「()」) のみです。他のもの、例えばt,"",[],0,1などはすべて真です。 偽の反転 $ (not nil) t $ (not ()) t 真の反転の反転 $ (not (not t)) t $ (not (not "")) t $ (not (no...
- elispの条件分岐以下はすべてEshell上での実行結果例です。 いわゆるif-else C言語などのif-else文に相当する記述を行うためにはcondを使用します。 $ (cond ((/= 1 1) "msg" "1") ((= 1 1) "msg2") (t "msg3")) msg2 その他の条件分岐 condだけでも事足りま...