/doc/tut.tex

http://github.com/KirinDave/arc · LaTeX · 1309 lines · 1045 code · 264 blank · 0 comment · 0 complexity · ab9e5639ef32dff2f7a4f7834ef0165e MD5 · raw file

  1. \documentclass[a4paper,12pt]{book}
  2. \textheight=255mm
  3. \topmargin=-13mm
  4. \textwidth=160mm
  5. \oddsidemargin=1mm
  6. \evensidemargin=1mm
  7. \parindent=0pt
  8. \parskip=1ex
  9. \begin{document}
  10. \thispagestyle{empty}
  11. {\em [This is a brief tutorial on {\sc{}Arc}. It's intended for readers with
  12. little programming experience and no {\sc{}Lisp} experience. It is thus
  13. also an introduction to {\sc{}Lisp}.]}
  14. \bigskip
  15. \bigskip
  16. {\sc{}Arc} programs consist of expressions. The simplest expressions are
  17. things like numbers and strings, which evaluate to themselves.
  18. \begin{verbatim}
  19. arc> 25
  20. 25
  21. arc> "foo"
  22. "foo"
  23. \end{verbatim}
  24. Several expressions enclosed within parentheses are also an expression.
  25. These are called lists. When a list is evaluated, the elements are
  26. evaluated from left to right, and the value of the first (presumably
  27. a function) is passed the values of the rest. Whatever it returns
  28. is returned as the value of the expression.
  29. \begin{verbatim}
  30. arc> (+ 1 2)
  31. 3
  32. \end{verbatim}
  33. Here's what just happened. First {\tt+}, {\tt1}, and {\tt2} were evaluated,
  34. returning the plus function, 1, and 2 respectively. 1 and 2 were
  35. then passed to the plus function, which returned 3, which was
  36. returned as the value of the whole expression.
  37. (Macros introduce a twist, because they transform lists before
  38. they're evaluated. We'll get to them later.)
  39. Since expression and evaluation are both defined recursively,
  40. programs can be as complex as you want:
  41. \begin{verbatim}
  42. arc> (+ (+ 1 2) (+ 3 (+ 4 5)))
  43. 15
  44. \end{verbatim}
  45. Putting the {\tt+} before the numbers looks odd when you're used to
  46. writing \verb|1 + 2|, but it has the advantage that {\tt+} can now take any
  47. number of arguments, not just two:
  48. \begin{verbatim}
  49. arc> (+)
  50. 0
  51. arc> (+ 1)
  52. 1
  53. arc> (+ 1 2)
  54. 3
  55. arc> (+ 1 2 3)
  56. 6
  57. \end{verbatim}
  58. This turns out to be a convenient property, especially when generating
  59. code, which is a common thing to do in {\sc{}Lisp}.
  60. {\sc{}Lisp} dialects like {\sc{}Arc} have a data type most languages don't:
  61. {\em{}symbols}. We've already seen one: {\tt+} is a symbol. Symbols don't
  62. evaluate to themselves the way numbers and strings do. They return
  63. whatever value they've been assigned.
  64. If we give {\tt{}foo} the value 13, it will return 13 when evaluated:
  65. \begin{verbatim}
  66. arc> (= foo 13)
  67. 13
  68. arc> foo
  69. 13
  70. \end{verbatim}
  71. You can turn off evaluation by putting a single quote character
  72. before an expression. So {\tt'foo} returns the symbol {\tt{}foo}.
  73. \begin{verbatim}
  74. arc> 'foo
  75. foo
  76. \end{verbatim}
  77. Particularly observant readers may be wondering how we got away
  78. with using {\tt{}foo} as the first argument to {\tt=}. If the arguments are
  79. evaluated left to right, why didn't this cause an error when foo
  80. was evaluated? There are some operators that violate the usual
  81. evaluation rule, and {\tt=} is one of them. Its first argument isn't
  82. evaluated.
  83. If you quote a list, you get back the list itself.
  84. \begin{verbatim}
  85. arc> (+ 1 2)
  86. 3
  87. arc> '(+ 1 2)
  88. (+ 1 2)
  89. \end{verbatim}
  90. The first expression returns the number 3. The second, because it
  91. was quoted, returns a list consisting of the symbol {\tt+} and the numbers
  92. 1 and 2.
  93. You can build up lists with \verb|cons|, which returns a list with a new
  94. element on the front:
  95. \begin{verbatim}
  96. arc> (cons 'f '(a b))
  97. (f a b)
  98. \end{verbatim}
  99. It doesn't change the original list:
  100. \begin{verbatim}
  101. arc> (= x '(a b))
  102. (a b)
  103. arc> (cons 'f x)
  104. (f a b)
  105. arc> x
  106. (a b)
  107. \end{verbatim}
  108. The empty list is represented by the symbol \verb|nil|, which is defined
  109. to evaluate to itself. So to make a list of one element you say:
  110. \begin{verbatim}
  111. arc> (cons 'a nil)
  112. (a)
  113. \end{verbatim}
  114. You can take lists apart with \verb|car| and \verb|cdr|, which return the first
  115. element and everything but the first element respectively:
  116. \begin{verbatim}
  117. arc> (car '(a b c))
  118. a
  119. arc> (cdr '(a b c))
  120. (b c)
  121. \end{verbatim}
  122. To create a list with many elements use \verb|list|, which does a series
  123. of \verb|cons|es:
  124. \begin{verbatim}
  125. arc> (list 'a 1 "foo" '(b))
  126. (a 1 "foo" (b))
  127. arc> (cons 'a (cons 1 (cons "foo" (cons '(b) nil))))
  128. (a 1 "foo" (b))
  129. \end{verbatim}
  130. Notice that lists can contain elements of any type.
  131. There are 4 parentheses at the end of that call to \verb|cons|. How do
  132. {\sc{}Lisp} programmers deal with this? They don't. You could add or
  133. subtract a right paren from that expression and most wouldn't notice.
  134. {\sc{}Lisp} programmers don't count parens. They read code by indentation,
  135. not parens, and when writing code they let the editor match parens
  136. (use \verb|:set sm| in {\em{}vi}, \verb|M-x lisp-mode| in {\em{}Emacs}).
  137. Like {\sc{}Common Lisp} assignment, {\sc{}Arc}'s {\tt=} is not just for variables, but
  138. can reach inside structures. So you can use it to modify lists:
  139. \begin{verbatim}
  140. arc> x
  141. (a b)
  142. arc> (= (car x) 'z)
  143. z
  144. arc> x
  145. (z b)
  146. \end{verbatim}
  147. Lists are useful in exploratory programming because they're so
  148. flexible. You don't have to commit in advance to exactly what a
  149. list represents. For example, you can use a list of two numbers
  150. to represent a point on a plane. Some would think it more proper
  151. to define a point object with two fields, $x$ and $y$. But if you use
  152. lists to represent points, then when you expand your program to
  153. deal with $n$ dimensions, all you have to do is make the new code
  154. default to zero for missing coordinates, and any remaining planar
  155. code will continue to work.
  156. Or if you decide to expand in another direction and allow partially
  157. evaluated points, you can start using symbols representing variables
  158. as components of points, and once again, all the existing code will
  159. continue to work.
  160. In exploratory programming, it's as important to avoid premature
  161. specification as premature optimization.
  162. The most exciting thing lists can represent is code. The lists you
  163. build with \verb|cons| are the same things programs are made out of. This
  164. means you can write programs that write programs. The usual way
  165. to do this is with something called a {\em{}macro}. We'll get to those
  166. later. First, functions.
  167. We've already seen some functions: {\tt+}, \verb|cons|, \verb|car|, and \verb|cdr|. You can
  168. define new ones with \verb|def|, which takes a symbol to use as the name,
  169. a list of symbols representing the parameters, and then zero or
  170. more expressions called the body. When the function is called,
  171. those expressions will be evaluated in order with the symbols in
  172. the body temporarily set (``bound'') to the corresponding argument.
  173. Whatever the last expression returns will be returned as the value
  174. of the call.
  175. Here's a function that takes two numbers and returns their average:
  176. \begin{verbatim}
  177. arc> (def average (x y)
  178. (/ (+ x y) 2))
  179. #<procedure: average>
  180. arc> (average 2 4)
  181. 3
  182. \end{verbatim}
  183. The body of the function consists of one expression, \verb|(/ (+ x y) 2)|.
  184. It's common for functions to consist of one expression; in purely
  185. functional code (code with no side-effects) they always do.
  186. Notice that \verb|def|, like {\tt=}, doesn't evaluate all its arguments. It
  187. is another of those operators with its own evaluation rule.
  188. What's the strange-looking object returned as the value of the \verb|def|
  189. expression? That's what a function looks like. In {\sc{}Arc}, as in most
  190. {\sc{}Lisp}s, functions are a data type, just like numbers or strings.
  191. As the literal representation of a string is a series of characters
  192. surrounded by double quotes, the literal representation of a function
  193. is a list consisting of the symbol {\tt{}fn}, followed by its parameters,
  194. followed by its body. So you could represent a function to return
  195. the average of two numbers as:
  196. \begin{verbatim}
  197. arc> (fn (x y) (/ (+ x y) 2))
  198. #<procedure>
  199. \end{verbatim}
  200. There's nothing semantically special about named functions as there
  201. is in some other languages. All \verb|def| does is basically this:
  202. \begin{verbatim}
  203. arc> (= average (fn (x y) (/ (+ x y) 2)))
  204. #<procedure: average>
  205. \end{verbatim}
  206. And of course you can use a literal function wherever you could use
  207. a symbol whose value is one, e.\,g.
  208. \begin{verbatim}
  209. arc> ((fn (x y) (/ (+ x y) 2)) 2 4)
  210. 3
  211. \end{verbatim}
  212. This expression has three elements, \verb|(fn (x y) (/ (+ x y) 2))|, which
  213. yields a function that returns averages, and the numbers {\tt2} and {\tt4}.
  214. So when you evaluate all three expressions and pass the values of
  215. the second and third to the value of the first, you pass 2 and 4
  216. to a function that returns averages, and the result is 3.
  217. There's one thing you can't do with functions that you can do with
  218. data types like symbols and strings: you can't print them out in a
  219. way that could be read back in. The reason is that the function
  220. could be a {\em{}closure}; displaying closures is a tricky problem.
  221. In {\sc{}Arc}, data structures can be used wherever functions are, and
  222. they behave as functions from indices to whatever's stored there.
  223. So to get the first element of a string you say:
  224. \begin{verbatim}
  225. arc> ("foo" 0)
  226. #\f
  227. \end{verbatim}
  228. That return value is what a literal character looks like, incidentally.
  229. Expressions with data structures in functional position also work
  230. as the first argument to {\tt=}.
  231. \begin{verbatim}
  232. arc> (= s "foo")
  233. "foo"
  234. arc> (= (s 0) #\m)
  235. #\m
  236. arc> s
  237. "moo"
  238. \end{verbatim}
  239. There are two commonly used operators for establishing temporary
  240. variables, \verb|let| and \verb|with|. The first is for just one variable.
  241. \begin{verbatim}
  242. arc> (let x 1
  243. (+ x (* x 2)))
  244. 3
  245. \end{verbatim}
  246. To bind multiple variables, use \verb|with|.
  247. \begin{verbatim}
  248. arc> (with (x 3 y 4)
  249. (sqrt (+ (expt x 2) (expt y 2))))
  250. 5
  251. \end{verbatim}
  252. So far we've only had things printed out implicity as a result of
  253. evaluating them. The standard way to print things out in the middle
  254. of evaluation is with \verb|pr| or \verb|prn|. They take multiple arguments and
  255. print them in order; \verb|prn| also prints a newline at the end. Here's
  256. a variant of \verb|average| that tells us what its arguments were:
  257. \begin{verbatim}
  258. arc> (def average (x y)
  259. (prn "my arguments were: " (list x y))
  260. (/ (+ x y) 2))
  261. *** redefining average
  262. #<procedure: average>
  263. arc> (average 100 200)
  264. my arguments were: (100 200)
  265. 150
  266. \end{verbatim}
  267. The standard conditional operator is \verb|if|. Like {\tt=} and \verb|def|, it doesn't
  268. evaluate all its arguments. When given three arguments, it evaluates
  269. the first, and if that returns true, it returns the value of the
  270. second, otherwise the value of the third:
  271. \begin{verbatim}
  272. arc> (if (odd 1) 'a 'b)
  273. a
  274. arc> (if (odd 2) 'a 'b)
  275. b
  276. \end{verbatim}
  277. Returning true means returning anything except \verb|nil|. \verb|Nil| is
  278. conventionally used to represent falsity as well as the empty list.
  279. The symbol {\tt{}t} (which like \verb|nil| evaluates to itself) is often used to
  280. represent truth, but any value other than \verb|nil| would serve just as
  281. well.
  282. \begin{verbatim}
  283. arc> (odd 1)
  284. t
  285. arc> (odd 2)
  286. nil
  287. \end{verbatim}
  288. It sometimes causes confusion to use the same thing for falsity and
  289. the empty list, but many years of {\sc{}Lisp} programming have convinced
  290. me it's a net win, because the empty list is set-theoretic false,
  291. and many {\sc{}Lisp} programs think in sets.
  292. If the third argument is missing it defaults to \verb|nil|.
  293. \begin{verbatim}
  294. arc> (if (odd 2) 'a)
  295. nil
  296. \end{verbatim}
  297. An \verb|if| with more than three arguments is equivalent to a nested \verb|if|.
  298. \begin{verbatim}
  299. (if a b c d e)
  300. \end{verbatim}
  301. is equivalent to
  302. \begin{verbatim}
  303. (if a
  304. b
  305. (if c
  306. d
  307. e))
  308. \end{verbatim}
  309. If you're used to languages with \verb|elseif|, this pattern will be
  310. familiar.\footnote{%
  311. Note to {\sc{}Lisp} hackers: If you're used to the conventional {\sc{}Lisp}
  312. {\tt{}cond} operator, this {\tt{}if} amounts to the same thing, but with fewer
  313. parentheses. E.\,g.\ {\tt (cond (a b) (c d) (t e))} becomes {\tt (if a b c d e)}\,.
  314. JMC's original {\tt{}cond} didn't have implicit {\tt{}progn}, so the parens around
  315. each pair of clauses were unnecessary. They became necessary soon
  316. after, however, when {\tt{}cond} started to have implicit {\tt{}progn} in the
  317. first {\sc{}Lisp} implementations. This probably prevented people from
  318. realizing they hadn't originally been needed. But most {\tt{}cond}s in
  319. the wild seem to occur in purely functional code, and thus pay the
  320. cost in parens of implicit {\tt{}progn} without actually needing it. My
  321. experience so far suggests it's a net win to offer {\tt{}progn} \`a la carte
  322. instead of combining it with the default conditional operator.
  323. Having to use explicit {\tt{}do}s may even be an advantage, because it
  324. calls attention to nonfunctional code.
  325. }
  326. Each argument to \verb|if| is a single expression, so if you want to do
  327. multiple things depending on the result of a test, combine them
  328. into one expression with \verb|do|.
  329. \begin{verbatim}
  330. arc> (do (prn "hello")
  331. (+ 2 3))
  332. hello
  333. 5
  334. \end{verbatim}
  335. If you just want several expressions to be evaluated when some
  336. condition is true, you could say
  337. \begin{verbatim}
  338. (if a
  339. (do b
  340. c))
  341. \end{verbatim}
  342. but this situation is so common there's a separate operator for it.
  343. \begin{verbatim}
  344. (when a
  345. b
  346. c)
  347. \end{verbatim}
  348. The \verb|and| and \verb|or| operators are like conditionals because they don't
  349. evaluate more arguments than they have to.
  350. \begin{verbatim}
  351. arc> (and nil
  352. (pr "you'll never see this"))
  353. nil
  354. \end{verbatim}
  355. The negation operator is called \verb|no|, a name that also works when
  356. talking about \verb|nil| as the empty list. Here's a function to return
  357. the length of a list:
  358. \begin{verbatim}
  359. arc> (def mylen (xs)
  360. (if (no xs)
  361. 0
  362. (+ 1 (mylen (cdr xs)))))
  363. #<procedure: mylen>
  364. \end{verbatim}
  365. If the list is \verb|nil| the function will immediately return 0. Otherwise
  366. it returns 1 more than the length of the \verb|cdr| of the list.
  367. \begin{verbatim}
  368. arc> (mylen nil)
  369. 0
  370. arc> (mylen '(a b))
  371. 2
  372. \end{verbatim}
  373. I called it \verb|mylen| because there's already a function called \verb|len| for
  374. this. You're welcome to redefine {\sc{}Arc} functions, but redefining
  375. \verb|len| this way might break code that depended on it, because \verb|len| works
  376. on more than lists.
  377. The standard comparison operator is \verb|is|, which returns true if its
  378. arguments are identical or, if strings, have the same characters.
  379. \begin{verbatim}
  380. arc> (is 'a 'a)
  381. t
  382. arc> (is "foo" "foo")
  383. t
  384. arc> (let x (list 'a)
  385. (is x x))
  386. t
  387. arc> (is (list 'a) (list 'a))
  388. nil
  389. \end{verbatim}
  390. Note that \verb|is| returns false for two lists with the same elements.
  391. There's another operator for that, \verb|iso| (from isomorphic).
  392. \begin{verbatim}
  393. arc> (iso (list 'a) (list 'a))
  394. t
  395. \end{verbatim}
  396. If you want to test whether something is one of several alternatives,
  397. you could say \verb|(or (is x y) (is x z) ...)|, but this situation is
  398. common enough that there's an operator for it.
  399. \begin{verbatim}
  400. arc> (let x 'a
  401. (in x 'a 'b 'c))
  402. t
  403. \end{verbatim}
  404. The \verb|case| operator takes alternating keys and expressions and returns
  405. the value of the expression after the key that matches. You can
  406. supply a final expression as the default.
  407. \begin{verbatim}
  408. arc> (def translate (sym)
  409. (case sym
  410. apple 'mela
  411. onion 'cipolla
  412. 'che?))
  413. #<procedure: translate>
  414. arc> (translate 'apple)
  415. mela
  416. arc> (translate 'syzygy)
  417. che?
  418. \end{verbatim}
  419. {\sc{}Arc} has a variety of iteration operators. For a range of numbers,
  420. use \verb|for|.
  421. \begin{verbatim}
  422. arc> (for i 1 10
  423. (pr i " "))
  424. 1 2 3 4 5 6 7 8 9 10 nil
  425. \end{verbatim}
  426. To iterate through the elements of a list or string, use \verb|each|.
  427. \begin{verbatim}
  428. arc> (each x '(a b c d e)
  429. (pr x " "))
  430. a b c d e nil
  431. \end{verbatim}
  432. Those \verb|nil|s you see at the end each time are not printed out by the
  433. code in the loop. They're the return values of the iteration
  434. expressions.
  435. To continue iterating while some condition is true, use \verb|while|.
  436. \begin{verbatim}
  437. arc> (let x 10
  438. (while (> x 5)
  439. (= x (- x 1))
  440. (pr x)))
  441. 98765nil
  442. \end{verbatim}
  443. There's also a more general \verb|loop| operator that's similar to the C
  444. \verb|for| operator and tends to be rarely used in practice, and a simple
  445. \verb|repeat| operator for doing something $n$ times:
  446. \begin{verbatim}
  447. arc> (repeat 5 (pr "la "))
  448. la la la la la nil
  449. \end{verbatim}
  450. The \verb|map| function takes a function and a list and returns the result
  451. of applying the function to successive elements.
  452. \begin{verbatim}
  453. arc> (map (fn (x) (+ x 10)) '(1 2 3))
  454. (11 12 13 . nil)
  455. \end{verbatim}
  456. Actually it can take any number of sequences, and keeps going till
  457. the shortest runs out:
  458. \begin{verbatim}
  459. arc> (map + '(1 2 3 4) '(100 200 300))
  460. (101 202 303)
  461. \end{verbatim}
  462. Since functions of one argument are so often used in {\sc{}Lisp} programs,
  463. {\sc{}Arc} has a special notation for them. \verb|[... _ ...]| is an abbreviation
  464. for \verb|(fn (_) (... _ ...))|. So our first \verb|map| example could have been
  465. written
  466. \begin{verbatim}
  467. arc> (map [+ _ 10] '(1 2 3))
  468. (11 12 13 . nil)
  469. \end{verbatim}
  470. Removing variables is a particularly good way to make programs
  471. shorter. An unnecessary variable increases the conceptual load of
  472. a program by more than just what it adds to the length.
  473. You can compose functions by putting a colon between the names.
  474. I.\,e.\, \verb|(foo:bar x y)| is equivalent to \verb|(foo (bar x y))|. Composed
  475. functions are convenient as arguments.
  476. \begin{verbatim}
  477. arc> (map odd:car '((1 2) (4 5) (7 9)))
  478. (t nil t)
  479. \end{verbatim}
  480. You can also negate a function by putting a tilde ({\tt\char126}) before the
  481. name:
  482. \begin{verbatim}
  483. arc> (map ~odd '(1 2 3 4 5))
  484. (nil t nil t nil)
  485. \end{verbatim}
  486. There are a number of functions like \verb|map| that apply functions to
  487. successive elements of a sequence. The most commonly used is \verb|keep|,
  488. which returns the elements satisfying some test.
  489. \begin{verbatim}
  490. arc> (keep odd '(1 2 3 4 5 6 7))
  491. (1 3 5 7)
  492. \end{verbatim}
  493. Others include \verb|rem|, which does the opposite of \verb|keep|; \verb|all|, which
  494. returns true if the function is true of every element; \verb|some|, which
  495. returns true if the function is true of any element; \verb|pos|, which
  496. returns the position of the first element for which the function
  497. returns true; and \verb|trues|, which returns a list of all the non-\verb|nil|
  498. return values:
  499. \begin{verbatim}
  500. arc> (rem odd '(1 2 3 4 5 6))
  501. (2 4 6)
  502. arc> (all odd '(1 3 5 7))
  503. t
  504. arc> (some even '(1 3 5 7))
  505. nil
  506. arc> (pos even '(1 2 3 4 5))
  507. 1
  508. arc> (trues [if (odd _) (+ _ 10)]
  509. '(1 2 3 4 5))
  510. (11 13 15)
  511. \end{verbatim}
  512. If functions like this are given a first argument that isn't a
  513. function, it's treated like a function that tests for equality to
  514. that:
  515. \begin{verbatim}
  516. arc> (rem 'a '(a b a c u s))
  517. (b c u s)
  518. \end{verbatim}
  519. and they all work on strings as well as lists.
  520. \begin{verbatim}
  521. arc> (rem #\a "abacus")
  522. "bcus"
  523. \end{verbatim}
  524. Lists can be used to represent a wide variety of data structures,
  525. but if you want to store key/value pairs efficiently, {\sc{}Arc} also has
  526. hash tables.
  527. \begin{verbatim}
  528. arc> (= airports (table))
  529. #hash()
  530. arc> (= (airports "Boston") 'bos)
  531. bos
  532. \end{verbatim}
  533. If you want to create a hash table filled with values, you can use
  534. \verb|listtab|, which takes a list of key/value pairs and returns the
  535. corresponding hash table.
  536. \begin{verbatim}
  537. arc> (let h (listtab '((x 1) (y 2)))
  538. (h 'y))
  539. 2
  540. \end{verbatim}
  541. There's also an abbreviated form where you don't need to group the
  542. arguments or quote the keys.
  543. \begin{verbatim}
  544. arc> (let h (obj x 1 y 2)
  545. (h 'y))
  546. 2
  547. \end{verbatim}
  548. Like lists and strings, hash tables can be used wherever functions are.
  549. \begin{verbatim}
  550. arc> (= codes (obj "Boston" 'bos "San Francisco" 'sfo "Paris" 'cdg))
  551. #hash(("Boston" . bos) ("Paris" . cdg) ("San Francisco" . sfo))
  552. arc> (map codes '("Paris" "Boston" "San Francisco"))
  553. (cdg bos sfo)
  554. \end{verbatim}
  555. The function \verb|keys| returns the keys in a hash table, and \verb|vals| returns
  556. the values.
  557. \begin{verbatim}
  558. arc> (keys codes)
  559. ("Boston" "Paris" "San Francisco")
  560. \end{verbatim}
  561. There is a function called \verb|maptable| for hash tables that is like
  562. \verb|map| for lists, except that it returns the original table instead
  563. of a new one.
  564. \begin{verbatim}
  565. arc> (maptable (fn (k v) (prn v " " k))
  566. codes)
  567. sfo San Francisco
  568. cdg Paris
  569. bos Boston
  570. #hash(("Boston" . bos) ("Paris" . cdg) ("San Francisco" . sfo))
  571. \end{verbatim}
  572. [Note: Like functions, hash tables can't be printed out in a way
  573. that can be read back in. We hope to fix that though.]
  574. There is a tradition in {\sc{}Lisp} going back to McCarthy's 1960 paper\footnote{%
  575. {\em Recursive Functions of Symbolic Expressions and Their Computation
  576. by Machine, Part~I}, CACM, April~1960.
  577. {\tt{}http://www-formal.stanford.edu/jmc/recursive/recursive.html}
  578. }
  579. of using lists to represent key/value pairs:
  580. \begin{verbatim}
  581. arc> (= codes (("Boston" bos) ("Paris" cdg) ("San Francisco" sfo)))
  582. (("Boston" bos) ("Paris" cdg) ("San Francisco" sfo))
  583. \end{verbatim}
  584. This is called an association list, or {\em{}alist} for short. I once
  585. thought alists were just a hack, but there are many things you can
  586. do with them that you can't do with hash tables, including sort
  587. them, build them up incrementally in recursive functions, have
  588. several that share the same tail, and preserve old values.
  589. The function \verb|alref| returns the first value corresponding to a key
  590. in an alist:
  591. \begin{verbatim}
  592. arc> (alref codes "Boston")
  593. bos
  594. \end{verbatim}
  595. There are a couple operators for building strings. The most general
  596. is \verb|string|, which takes any number of arguments and mushes them into
  597. a string:
  598. \begin{verbatim}
  599. arc> (string 99 " bottles of " 'bee #\r)
  600. "99 bottles of beer"
  601. \end{verbatim}
  602. Every argument will appear as it would look if printed out by \verb|pr|,
  603. except \verb|nil|, which is ignored.
  604. There's also \verb|tostring|, which is like \verb|do| except any output generated
  605. during the evaluation of its body is sent to a string, which is
  606. returned as the value of the whole expression.
  607. \begin{verbatim}
  608. arc> (tostring
  609. (prn "domesday")
  610. (prn "book"))
  611. "domesday\nbook\n"
  612. \end{verbatim}
  613. You can find the types of things using \verb|type|, and convert them to
  614. new types using \verb|coerce|.
  615. \begin{verbatim}
  616. arc> (map type (list 'foo 23 23.5 '(a) nil car "foo" #\a))
  617. (sym int num cons sym fn string char)
  618. arc> (coerce #\A 'int)
  619. 65
  620. arc> (coerce "foo" 'cons)
  621. (#\f #\o #\o)
  622. arc> (coerce "99" 'int)
  623. 99
  624. arc> (coerce "99" 'int 16)
  625. 153
  626. \end{verbatim}
  627. The \verb|push| and \verb|pop| operators treat list as stacks, pushing a new
  628. element on the front and popping one off respectively.
  629. \begin{verbatim}
  630. arc> (= x '(c a b))
  631. (c a b)
  632. arc> (pop x)
  633. c
  634. arc> x
  635. (a b)
  636. arc> (push 'f x)
  637. (f a b)
  638. arc> x
  639. (f a b)
  640. \end{verbatim}
  641. Like {\tt=}, they work within structures, not just on variables.
  642. \begin{verbatim}
  643. arc> (push 'l (cdr x))
  644. (l a b)
  645. arc> x
  646. (f l a b)
  647. \end{verbatim}
  648. To increment or decrement use {\tt++} or {\tt--}:
  649. \begin{verbatim}
  650. arc> (let x '(1 2 3)
  651. (++ (car x))
  652. x)
  653. (2 2 3)
  654. \end{verbatim}
  655. There's also a more general operator called \verb|zap| that changes something
  656. to the result any function returns when applied to it. I.\,e. \verb|(++ x)|
  657. is equivalent to \verb|(zap [+ _ 1] x)|.
  658. The \verb|sort| function returns a copy of a sequence sorted according to
  659. the function given as the first argument.
  660. \begin{verbatim}
  661. arc> (sort < '(2 9 3 7 5 1))
  662. (1 2 3 5 7 9)
  663. \end{verbatim}
  664. It doesn't change the original, so if you want to sort the value
  665. of a particular variable (or place within a structure), use \verb|zap|:
  666. \begin{verbatim}
  667. arc> (= x '(2 9 3 7 5 1))
  668. (2 9 3 7 5 1)
  669. arc> (zap [sort < _] x)
  670. (1 2 3 5 7 9)
  671. arc> x
  672. (1 2 3 5 7 9)
  673. \end{verbatim}
  674. If you want to modify a sorted list by inserting a new element
  675. at the right place, use \verb|insort|:
  676. \begin{verbatim}
  677. arc> (insort < 4 x)
  678. (1 2 3 4 5 7 9)
  679. arc> x
  680. (1 2 3 4 5 7 9)
  681. \end{verbatim}
  682. In practice the things one needs to sort are rarely just lists of
  683. numbers. More often you'll need to sort things according to some
  684. property other than their value, e.\,g.
  685. \begin{verbatim}
  686. arc> (sort (fn (x y) (< (len x) (len y)))
  687. '("orange" "pea" "apricot" "apple"))
  688. ("pea" "apple" "orange" "apricot")
  689. \end{verbatim}
  690. {\sc{}Arc}'s sort is stable, meaning the relative positions of elements
  691. judged equal by the comparison function won't change:
  692. \begin{verbatim}
  693. arc> (sort (fn (x y) (< (len x) (len y)))
  694. '("aa" "bb" "cc"))
  695. ("aa" "bb" "cc")
  696. \end{verbatim}
  697. Since comparison functions other than {\tt>} or {\tt<} are so often needed,
  698. {\sc{}Arc} has a \verb|compare| function to build them:
  699. \begin{verbatim}
  700. arc> (sort (compare < len)
  701. '("orange" "pea" "apricot" "apple"))
  702. ("pea" "apple" "orange" "apricot")
  703. \end{verbatim}
  704. We've seen several functions so far that take optional arguments
  705. or varying numbers of arguments. To make a parameter optional,
  706. just say \verb|(o x)| instead of {\tt{}x}. Optional parameters default to \verb|nil|.
  707. \begin{verbatim}
  708. arc> (def greet (name (o punc))
  709. (string "hello " name punc))
  710. #<procedure: greet>
  711. arc> (greet 'joe)
  712. "hello joe"
  713. arc> (greet 'joe #\!)
  714. "hello joe!"
  715. \end{verbatim}
  716. Functions can have as many optional parameters as you want, but
  717. they have to come at the end of the parameter list.
  718. If you put an expression after the name of an optional parameter,
  719. it will be evaluated if necessary to produce a default value. The
  720. expression can refer to preceding parameters.
  721. \begin{verbatim}
  722. arc> (def greet (name (o punc (case name who #\? #\!)))
  723. (string "hello " name punc))
  724. *** redefining greet
  725. #<procedure: greet>
  726. arc> (greet 'who)
  727. "hello who?"
  728. \end{verbatim}
  729. To make a function that takes any number of arguments, put a period
  730. and a space before the last parameter, and it will get bound to a
  731. list of the values of all the remaining arguments:
  732. \begin{verbatim}
  733. arc> (def foo (x y . z)
  734. (list x y z))
  735. #<procedure: foo>
  736. arc> (foo (+ 1 2) (+ 3 4) (+ 5 6) (+ 7 8))
  737. (3 7 (11 15))
  738. \end{verbatim}
  739. This type of parameter is called a ``rest parameter'' because it gets
  740. the rest of the arguments. If you want all the arguments to a
  741. function to be collected in one parameter, just use it in place of
  742. the whole parameter list.
  743. (These conventions are not as random as they seem. The parameter
  744. list mirrors the form of the arguments, and a list terminated by
  745. something other than \verb|nil| is represented as e.\,g.\ \verb|(a b . c)|.)
  746. To supply a list of arguments to a function, use \verb|apply|:
  747. \begin{verbatim}
  748. arc> (apply + '(1 2 3))
  749. 6
  750. \end{verbatim}
  751. Now that we have rest parameters and \verb|apply|, we can write a version
  752. of \verb|average| that takes any number of arguments.
  753. \begin{verbatim}
  754. arc> (def average args
  755. (/ (apply + args) (len args)))
  756. #<procedure: average>
  757. arc> (average 1 2 3)
  758. 2
  759. \end{verbatim}
  760. We know enough now to start writing macros. Macros are basically
  761. functions that generate code. Of course, generating code is easy;
  762. just call \verb|list|.
  763. \begin{verbatim}
  764. arc> (list '+ 1 2)
  765. (+ 1 2)
  766. \end{verbatim}
  767. What macros offer is a way of getting code generated this way into
  768. your programs. Here's a (rather stupid) macro definition:
  769. \begin{verbatim}
  770. arc> (mac foo ()
  771. (list '+ 1 2))
  772. *** redefining foo
  773. #3(tagged mac #<procedure>)
  774. \end{verbatim}
  775. Notice that a macro definition looks exactly like a function
  776. definition, but with \verb|def| replaced by \verb|mac|.
  777. What this macro says is that whenever the expression (\verb|foo|) occurs
  778. in your code, it shouldn't be evaluated in the normal way like a
  779. function call. Instead it should be replaced by the result of
  780. evaluating the body of the macro definition, \verb|(list '+ 1 2)|.
  781. This is called the ``expansion'' of the macro call.
  782. In other words, if you've defined \verb|foo| as above, putting \verb|(foo)|
  783. anywhere in your code is equivalent to putting \verb|(+ 1 2)| there.
  784. \begin{verbatim}
  785. arc> (+ 10 (foo))
  786. 13
  787. \end{verbatim}
  788. This is a rather useless macro, because it doesn't take any arguments.
  789. Here's a more useful one:
  790. \begin{verbatim}
  791. arc> (mac when (test . body)
  792. (list 'if test (cons 'do body)))
  793. *** redefining when
  794. #3(tagged mac #<procedure>)
  795. \end{verbatim}
  796. We've just redefined the built-in \verb|when| operator. That would
  797. ordinarily be an alarming idea, but fortunately the definition we
  798. supplied is the same as the one it already had.
  799. \begin{verbatim}
  800. arc> (when 1
  801. (pr "hello ")
  802. 2)
  803. hello 2
  804. \end{verbatim}
  805. What the definition above says is that when you have to evaluate
  806. an expression whose first element is \verb|when|, replace it by the result
  807. of applying
  808. \begin{verbatim}
  809. (fn (test . body)
  810. (list 'if test (cons 'do body)))
  811. \end{verbatim}
  812. to the arguments. Let's try it by hand and see what we get.
  813. \begin{verbatim}
  814. arc> (apply (fn (test . body)
  815. (list 'if test (cons 'do body)))
  816. '(1 (pr "hello ") 2))
  817. (if 1 (do (pr "hello ") 2))
  818. \end{verbatim}
  819. So when {\sc{}Arc} has to evaluate
  820. \begin{verbatim}
  821. (when 1
  822. (pr "hello ")
  823. 2)
  824. \end{verbatim}
  825. the macro we defined transforms that into
  826. \begin{verbatim}
  827. (if 1
  828. (do (pr "hello ")
  829. 2))
  830. \end{verbatim}
  831. first, and when that in turn is evaluated, it produces the behavior
  832. we saw above.
  833. Building up expressions using calls to \verb|list| and \verb|cons| can get unwieldy,
  834. so most {\sc{}Lisp} dialects have an abbreviation called {\em{}backquote} that
  835. makes generating lists easier.
  836. If you put a single open-quote character ({\tt`}) before an expression,
  837. it turns off evaluation just like the ordinary quote ({\tt'}) does,
  838. \begin{verbatim}
  839. arc> `(a b c)
  840. (a b c)
  841. \end{verbatim}
  842. except that if you put a comma before an expression within the list,
  843. evaluation gets turned back on for that expression.
  844. \begin{verbatim}
  845. arc> (let x 2
  846. `(a ,x c))
  847. (a 2 c)
  848. \end{verbatim}
  849. A backquoted expression is like a quoted expression with holes in it.
  850. You can also put a comma-at ({\tt,@}) in front of anything within a
  851. backquoted expression, and in that case its value (which must be a
  852. list) will get spliced into whatever list you're currently in.
  853. \begin{verbatim}
  854. arc> (let x '(1 2)
  855. `(a ,@x c))
  856. (a 1 2 c)
  857. \end{verbatim}
  858. With backquote we can make the definition of \verb|when| more readable.
  859. \begin{verbatim}
  860. (mac when (test . body)
  861. `(if ,test (do ,@body)))
  862. \end{verbatim}
  863. In fact, this is the definition of \verb|when| in the {\sc{}Arc} source.
  864. One of the keys to understanding macros is to remember that macro
  865. calls aren't function calls. Macro calls look like function calls.
  866. Macro definitions even look a lot like function definitions. But
  867. something fundamentally different is happening. You're transforming
  868. code, not evaluating it. Macros live in the land of the names, not
  869. the land of the things they refer to.
  870. For example, consider this definition of \verb|repeat|:
  871. \begin{verbatim}
  872. arc> (mac repeat (n . body)
  873. `(for x 1 ,n ,@body))
  874. #3(tagged mac #<procedure>)
  875. \end{verbatim}
  876. Looks like it works, right?
  877. \begin{verbatim}
  878. arc> (repeat 3 (pr "blub "))
  879. blub blub blub nil
  880. \end{verbatim}
  881. But if you use it in certain contexts, strange things happen.
  882. \begin{verbatim}
  883. arc> (let x "blub "
  884. (repeat 3 (pr x)))
  885. 123nil
  886. \end{verbatim}
  887. We can see what's going wrong if we look at the expansion. The
  888. code above is equivalent to
  889. \begin{verbatim}
  890. (let x "blub "
  891. (for x 1 3 (pr x)))
  892. \end{verbatim}
  893. Now the bug is obvious. The macro uses the variable {\tt{}x} to hold the
  894. count while iterating, and that gets in the way of the {\tt{}x} we're
  895. trying to print.
  896. Some people worry unduly about this kind of bug. It caused the
  897. {\sc{}Scheme} committee to adopt a plan for ``hygienic'' macros that was
  898. probably a mistake. It seems to me that the solution is not to
  899. encourage the noob illusion that macro calls are function calls.
  900. People writing macros need to remember that macros live in the land
  901. of names. Naturally in the land of names you have to worry about
  902. using the wrong names, just as in the land of values you have to
  903. remember not to use the wrong values---for example, not to use zero
  904. as a divisor.
  905. The way to fix \verb|repeat| is to use a symbol that couldn't occur in
  906. source code instead of {\tt{}x}. In {\sc{}Arc} you can get one by calling the
  907. function \verb|uniq|. So the correct definition of \verb|repeat| (and in fact
  908. the one in the {\sc{}Arc} source) is
  909. \begin{verbatim}
  910. (mac repeat (n . body)
  911. `(for ,(uniq) 1 ,n ,@body))
  912. \end{verbatim}
  913. If you need one or more \verb|uniq|s for use in a macro, you can use \verb|w/uniq|,
  914. which takes either a variable or list of variables you want bound to
  915. \verb|uniq|s. Here's the definition of a variant of \verb|do| called \verb|do1| that's
  916. like \verb|do| but returns the value of its first argument instead of the
  917. last (useful if you want to print a message after something happens,
  918. but return the something, not the message):
  919. \begin{verbatim}
  920. (mac do1 args
  921. (w/uniq g
  922. `(let ,g ,(car args)
  923. ,@(cdr args)
  924. ,g)))
  925. \end{verbatim}
  926. Sometimes you actually want to ``capture'' variables, as it's called,
  927. in macro definitions. The following variant of \verb|if|, which binds the
  928. variable {\tt{}it} to the value of the test, turns out to be very useful:
  929. \begin{verbatim}
  930. (mac aif (expr . body)
  931. `(let it ,expr (if it ,@body)))
  932. \end{verbatim}
  933. In a sense, you now know all about macros---in the same sense that,
  934. if you know the axioms in Euclid, you know all the theorems. A lot
  935. follows from these simple ideas, and it can take years to explore
  936. the territory they define. At least, it took me years. But it's
  937. a path worth following. Because macro calls can expand into further
  938. macro calls, you can generate massively complex expressions with
  939. them---code you would have had to write by hand otherwise. And yet
  940. programs built up out of layers of macros turn out to be very
  941. manageable. I wouldn't be surprised if some parts of my code go
  942. through 10 or 20 levels of macroexpansion before the compiler sees
  943. them, but I don't know, because I've never had to look.
  944. One of the things you'll discover as you learn more about macros
  945. is how much day-to-day coding in other languages consists of manually
  946. generating macroexpansions. Conversely, one of the most important
  947. elements of learning to think like a {\sc{}Lisp} programmer is to cultivate
  948. a dissatisfaction with repetitive code. When there are patterns
  949. in source code, the response should not be to enshrine them in a
  950. list of ``best practices,'' or to find an IDE that can generate them.
  951. Patterns in your code mean you're doing something wrong. You should
  952. write the macro that will generate them and call that instead.
  953. Now that you've learned the basics of {\sc{}Arc} programming, the best way
  954. to learn more about the language is to try writing some programs
  955. in it. Here's how to write the hello-world of web apps:
  956. \begin{verbatim}
  957. arc> (defop hello req (pr "hello world"))
  958. #<procedure:gs1430>
  959. arc> (asv)
  960. ready to serve port 8080
  961. \end{verbatim}
  962. If you now go to \verb|http://localhost:8080/hello| your new web app will
  963. be waiting for you.
  964. Here are a couple slightly more complex hellos that hint at the
  965. convenience of macros that store closures on the server:
  966. \begin{verbatim}
  967. (defop hello2 req
  968. (w/link (pr "there")
  969. (pr "here")))
  970. (defop hello3 req
  971. (w/link (w/link (pr "end")
  972. (pr "middle"))
  973. (pr "start")))
  974. (defop hello4 req
  975. (aform [w/link (pr "you said: " (arg _ "foo"))
  976. (pr "click here")]
  977. (input "foo")
  978. (submit)))
  979. \end{verbatim}
  980. See the sample application in \verb|blog.arc| for ideas about how to make
  981. web apps that do more.
  982. We now know enough {\sc{}Arc} to read the definitions of some of the
  983. predefined functions. Here are a few of the simpler ones.
  984. \begin{verbatim}
  985. (def cadr (xs)
  986. (car (cdr xs)))
  987. (def no (x)
  988. (is x nil))
  989. (def list args
  990. args)
  991. (def isa (x y)
  992. (is (type x) y))
  993. (def firstn (n xs)
  994. (if (and (> n 0) xs)
  995. (cons (car xs) (firstn (- n 1) (cdr xs)))
  996. nil))
  997. (def nthcdr (n xs)
  998. (if (> n 0)
  999. (nthcdr (- n 1) (cdr xs))
  1000. xs))
  1001. (def tuples (xs (o n 2))
  1002. (if (no xs)
  1003. nil
  1004. (cons (firstn n xs)
  1005. (tuples (nthcdr n xs) n))))
  1006. (def trues (f seq)
  1007. (rem nil (map f seq)))
  1008. (mac unless (test . body)
  1009. `(if (no ,test) (do ,@body)))
  1010. (mac awhen (expr . body)
  1011. `(let it ,expr (if it (do ,@body))))
  1012. (mac n-of (n expr)
  1013. (w/uniq ga
  1014. `(let ,ga nil
  1015. (repeat ,n (push ,expr ,ga))
  1016. (rev ,ga))))
  1017. \end{verbatim}
  1018. These definitions are taken from \verb|arc.arc|. As its name suggests,
  1019. reading that file is a good way to learn more about both {\sc{}Arc} and
  1020. {\sc{}Arc} programming techniques. Nothing in it is used before it's
  1021. defined; it is an exercise in building the part of the language
  1022. written in {\sc{}Arc} up from the ``axioms'' defined in \verb|ac.scm|. I hoped this
  1023. would yield a simple language. But since this is also the source
  1024. code of {\sc{}Arc}, I've tried to balance simplicity with efficiency. The
  1025. definitions aren't mathematically minimal if that would be insanely
  1026. inefficient; I tried that once, and they were.
  1027. The definitions in \verb|arc.arc| are also an experiment in another way.
  1028. They are the language spec. The spec for \verb|isa| isn't prose, like
  1029. function specs in {\sc{}Common Lisp}. This is the spec for \verb|isa|:
  1030. \begin{verbatim}
  1031. (def isa (x y)
  1032. (is (type x) y))
  1033. \end{verbatim}
  1034. It may sound rather dubious to say that the only spec for something
  1035. is its implementation. It sounds like the sort of thing one might
  1036. say about C++, or the {\sc{}Common Lisp} loop macro. But that's also how
  1037. math works. If the implementation is sufficiently abstract, it
  1038. starts to be a good idea to make specification and implementation
  1039. identical.
  1040. I agree with Abelson and Sussman that programs should be written
  1041. primarily for people to read rather than machines to execute. The
  1042. {\sc{}Lisp} defined as a model of computation in McCarthy's original paper
  1043. was. It seems worth trying to preserve this as you grow {\sc{}Lisp} into
  1044. a language for everyday use.
  1045. \end{document}