rlm@0
|
1 #+title: Calling it quits without parentheses
|
rlm@0
|
2 #+author: Robert McIntyre & Dylan Holmes
|
rlm@0
|
3 #+EMAIL: rlm@mit.edu
|
rlm@3
|
4 #+SETUPFILE: ../../aurellem/org/setup.org
|
rlm@3
|
5 #+INCLUDE: ../../aurellem/org/level-0.org
|
rlm@3
|
6
|
rlm@0
|
7
|
rlm@0
|
8 # * Calling it quits without parentheses
|
rlm@0
|
9 Is it possible to make a =quit= command for Clojure such that simply
|
rlm@0
|
10 typing the word =quit= at an REPL exits the REPL? An intuitive =quit=
|
rlm@0
|
11 command would be especially useful for people new to Lisp syntax or
|
rlm@0
|
12 the REPL; the challenge is to make a genuine Clojure command that
|
rlm@0
|
13 executes without being called with parentheses. We found three
|
rlm@0
|
14 solutions.
|
rlm@0
|
15
|
rlm@0
|
16 #+srcname: header
|
rlm@0
|
17 #+begin_src clojure :results silent
|
rlm@0
|
18 (ns abomination.no-parens
|
rlm@0
|
19 (:use clojure.contrib.def))
|
rlm@0
|
20 #+end_src
|
rlm@0
|
21
|
rlm@0
|
22 * By modifying =toString=
|
rlm@0
|
23 #+srcname: toString
|
rlm@0
|
24 #+begin_src clojure
|
rlm@0
|
25 (in-ns 'abomination.no-parens)
|
rlm@0
|
26 (gen-class :name abomination.no-parens.Quit
|
rlm@0
|
27 :prefix quit-)
|
rlm@0
|
28
|
rlm@0
|
29 (defn quit-toString
|
rlm@0
|
30 [this]
|
rlm@0
|
31 (System/exit 0))
|
rlm@0
|
32
|
rlm@1
|
33
|
rlm@0
|
34 (defvar quit (abomination.no-parens.Quit.)
|
rlm@0
|
35 "a sneaky way to support a `quit` command")
|
rlm@0
|
36 #+end_src
|
rlm@0
|
37
|
rlm@1
|
38 When you type any variable at the REPL, the REPL attempts to print it
|
rlm@1
|
39 as a nicely-formatted string by calling its =toString= method. Our
|
rlm@1
|
40 trick is to define a class with a =toString= method that exits the
|
rlm@1
|
41 REPL; this trick ensures that any variable of that class will close
|
rlm@0
|
42 the REPL when the REPL attempts to print it.
|
rlm@0
|
43
|
rlm@1
|
44 First, we use =gen-class= to make a new class named Quit; in that same
|
rlm@1
|
45 line, we use =:prefix= to establish the convention that any function
|
rlm@1
|
46 named =quit-[something]= will be adopted as the =[something]= method
|
rlm@1
|
47 for the newly-defined Quit class. We use this convention to write our
|
rlm@1
|
48 own =toString= method for Quit.
|
rlm@0
|
49
|
rlm@1
|
50 Next, we define a suitable =toString= method for the Quit class so
|
rlm@1
|
51 that attempting to print an instance of the Quit class has the effect
|
rlm@1
|
52 of closing the REPL. We do this by defining a function =quit-toString=
|
rlm@0
|
53 which closes the REPL; by the convention established above, the Quit
|
rlm@1
|
54 class automatically adopts =quit-toString= as its =toString= method.
|
rlm@0
|
55
|
rlm@0
|
56 Finally, we use =defvar= to create an instance of the Quit class; we
|
rlm@0
|
57 name this instance =quit=. Now when you type =quit= into the REPL, the
|
rlm@1
|
58 REPL executes the =toString= method of the Quit class, exiting the
|
rlm@1
|
59 REPL instead of returning a string.
|
rlm@0
|
60
|
rlm@0
|
61 #+begin_src clojure :exports both
|
rlm@1
|
62 (binding [*compile-path* "/home/r/proj/abomination/classes"]
|
rlm@0
|
63 (compile 'abomination.no-parens))
|
rlm@1
|
64
|
rlm@0
|
65 #+end_src
|
rlm@0
|
66
|
rlm@0
|
67 #+results:
|
rlm@0
|
68 : abomination.no-parens
|
rlm@0
|
69
|
rlm@0
|
70 * By wrapping the command in a lazy sequence
|
rlm@0
|
71 #+srcname: lazy-seq
|
rlm@0
|
72 #+begin_src clojure :results silent
|
rlm@0
|
73 (in-ns 'abomination.no-parens)
|
rlm@0
|
74 (defvar quit* (lazy-seq :the-great-bringer-of-death! (System/exit 0))
|
rlm@0
|
75 "the first time it's evaulated it will kill the JVM")
|
rlm@0
|
76 #+end_src
|
rlm@0
|
77
|
rlm@0
|
78 * By =delay=-ing the command
|
rlm@0
|
79 #+srcname: delay
|
rlm@0
|
80 #+begin_src clojure :results silent
|
rlm@0
|
81 (in-ns 'abomination.no-parens)
|
rlm@0
|
82 (defvar quit** (delay (System/exit 0))
|
rlm@0
|
83 "when this is evaulated at the REPL, it will exit the JVM.")
|
rlm@0
|
84 #+end_src
|
rlm@0
|
85
|
rlm@0
|
86 The same thing, accomplished in a much more elegant and clojureish
|
rlm@0
|
87 way.
|
rlm@0
|
88
|
rlm@0
|
89 # STUD CRUFT PIZZA
|
rlm@0
|
90
|
rlm@0
|
91 #+begin_quote
|
rlm@0
|
92 And death i think is no parenthesis
|
rlm@0
|
93 \mdash{}E. E. Cummings
|
rlm@0
|
94 #+end_quote
|
rlm@1
|
95
|
rlm@1
|
96
|
rlm@1
|
97 * COMMENT code generation
|
rlm@1
|
98 #+begin_src clojure :tangle ../src/abomination/no_parens.clj :results silent :exports none :noweb yes
|
rlm@1
|
99 <<header>>
|
rlm@1
|
100 <<toString>>
|
rlm@1
|
101 <<lazy-seq>>
|
rlm@1
|
102 <<delay>>
|
rlm@1
|
103 #+end_src
|