作成日
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上での実行結果例です。 足し算 $ (+ 1 2 3) 6 引き算 $ (- 10 100) -90 かけ算 $ (* 2 3 4) 24 割り算 $ (/ 10 8) 1 $ (/ 10.0 8) 1.25 $ (/ (float 10) 8) 1.25 余り $ (% 10 8) 2 累乗 $