LoginSignup
5
5

More than 5 years have passed since last update.

Light Table (Clojure) で実行可能なサンプルコードをコメントとして残す

Posted at

Clojureでは#_の次のフォームがコメントとして扱われることを利用するとサンプルコードを便利な形で残せます。

sample.clj
#_(map #(* 3 %) (range 9))

Light Tableではテキストを選択してCtrl-Enterすると選択部分の評価が行われます。
;によるコメントではPareditによるリストの選択が利きませんが、#_ならPareditを用いたショートカットキーでリストの選択ができて便利です。

5
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
5