scheme-ideas.texi 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593
  1. @c -*-texinfo-*-
  2. @c This is part of the GNU Guile Reference Manual.
  3. @c Copyright (C) 1996-1997, 2000-2005, 2012, 2019
  4. @c Free Software Foundation, Inc.
  5. @c See the file guile.texi for copying conditions.
  6. @node Hello Scheme!
  7. @chapter Hello Scheme!
  8. In this chapter, we introduce the basic concepts that underpin the
  9. elegance and power of the Scheme language.
  10. Readers who already possess a background knowledge of Scheme may happily
  11. skip this chapter. For the reader who is new to the language, however,
  12. the following discussions on data, procedures, expressions and closure
  13. are designed to provide a minimum level of Scheme understanding that is
  14. more or less assumed by the chapters that follow.
  15. The style of this introductory material aims about halfway between the terse
  16. precision of R5RS and the discursiveness of existing Scheme tutorials. For
  17. pointers to useful Scheme resources on the web, please see @ref{Further
  18. Reading}.
  19. @menu
  20. * About Data:: Latent typing, types, values and variables.
  21. * About Procedures:: The representation and use of procedures.
  22. * About Expressions:: All kinds of expressions and their meaning.
  23. * About Closure:: Closure, scoping and environments.
  24. * Further Reading:: Where to find out more about Scheme.
  25. @end menu
  26. @node About Data
  27. @section Data Types, Values and Variables
  28. This section discusses the representation of data types and values, what
  29. it means for Scheme to be a @dfn{latently typed} language, and the role
  30. of variables. We conclude by introducing the Scheme syntaxes for
  31. defining a new variable, and for changing the value of an existing
  32. variable.
  33. @menu
  34. * Latent Typing:: Scheme as a "latently typed" language.
  35. * Values and Variables:: About data types, values and variables.
  36. * Definition:: Defining variables and setting their values.
  37. @end menu
  38. @node Latent Typing
  39. @subsection Latent Typing
  40. The term @dfn{latent typing} is used to describe a computer language,
  41. such as Scheme, for which you cannot, @emph{in general}, simply look at
  42. a program's source code and determine what type of data will be
  43. associated with a particular variable, or with the result of a
  44. particular expression.
  45. Sometimes, of course, you @emph{can} tell from the code what the type of
  46. an expression will be. If you have a line in your program that sets the
  47. variable @code{x} to the numeric value 1, you can be certain that,
  48. immediately after that line has executed (and in the absence of multiple
  49. threads), @code{x} has the numeric value 1. Or if you write a procedure
  50. that is designed to concatenate two strings, it is likely that the rest
  51. of your application will always invoke this procedure with two string
  52. parameters, and quite probable that the procedure would go wrong in some
  53. way if it was ever invoked with parameters that were not both strings.
  54. Nevertheless, the point is that there is nothing in Scheme which
  55. requires the procedure parameters always to be strings, or @code{x}
  56. always to hold a numeric value, and there is no way of declaring in your
  57. program that such constraints should always be obeyed. In the same
  58. vein, there is no way to declare the expected type of a procedure's
  59. return value.
  60. Instead, the types of variables and expressions are only known -- in
  61. general -- at run time. If you @emph{need} to check at some point that
  62. a value has the expected type, Scheme provides run time procedures that
  63. you can invoke to do so. But equally, it can be perfectly valid for two
  64. separate invocations of the same procedure to specify arguments with
  65. different types, and to return values with different types.
  66. The next subsection explains what this means in practice, for the ways
  67. that Scheme programs use data types, values and variables.
  68. @node Values and Variables
  69. @subsection Values and Variables
  70. Scheme provides many data types that you can use to represent your data.
  71. Primitive types include characters, strings, numbers and procedures.
  72. Compound types, which allow a group of primitive and compound values to
  73. be stored together, include lists, pairs, vectors and multi-dimensional
  74. arrays. In addition, Guile allows applications to define their own data
  75. types, with the same status as the built-in standard Scheme types.
  76. As a Scheme program runs, values of all types pop in and out of
  77. existence. Sometimes values are stored in variables, but more commonly
  78. they pass seamlessly from being the result of one computation to being
  79. one of the parameters for the next.
  80. Consider an example. A string value is created because the interpreter
  81. reads in a literal string from your program's source code. Then a
  82. numeric value is created as the result of calculating the length of the
  83. string. A second numeric value is created by doubling the calculated
  84. length. Finally the program creates a list with two elements -- the
  85. doubled length and the original string itself -- and stores this list in
  86. a program variable.
  87. All of the values involved here -- in fact, all values in Scheme --
  88. carry their type with them. In other words, every value ``knows,'' at
  89. runtime, what kind of value it is. A number, a string, a list,
  90. whatever.
  91. A variable, on the other hand, has no fixed type. A variable --
  92. @code{x}, say -- is simply the name of a location -- a box -- in which
  93. you can store any kind of Scheme value. So the same variable in a
  94. program may hold a number at one moment, a list of procedures the next,
  95. and later a pair of strings. The ``type'' of a variable -- insofar as
  96. the idea is meaningful at all -- is simply the type of whatever value
  97. the variable happens to be storing at a particular moment.
  98. @node Definition
  99. @subsection Defining and Setting Variables
  100. To define a new variable, you use Scheme's @code{define} syntax like
  101. this:
  102. @lisp
  103. (define @var{variable-name} @var{value})
  104. @end lisp
  105. This makes a new variable called @var{variable-name} and stores
  106. @var{value} in it as the variable's initial value. For example:
  107. @lisp
  108. ;; Make a variable `x' with initial numeric value 1.
  109. (define x 1)
  110. ;; Make a variable `organization' with an initial string value.
  111. (define organization "Free Software Foundation")
  112. @end lisp
  113. (In Scheme, a semicolon marks the beginning of a comment that continues
  114. until the end of the line. So the lines beginning @code{;;} are
  115. comments.)
  116. Changing the value of an already existing variable is very similar,
  117. except that @code{define} is replaced by the Scheme syntax @code{set!},
  118. like this:
  119. @lisp
  120. (set! @var{variable-name} @var{new-value})
  121. @end lisp
  122. Remember that variables do not have fixed types, so @var{new-value} may
  123. have a completely different type from whatever was previously stored in
  124. the location named by @var{variable-name}. Both of the following
  125. examples are therefore correct.
  126. @lisp
  127. ;; Change the value of `x' to 5.
  128. (set! x 5)
  129. ;; Change the value of `organization' to the FSF's street number.
  130. (set! organization 545)
  131. @end lisp
  132. In these examples, @var{value} and @var{new-value} are literal numeric
  133. or string values. In general, however, @var{value} and @var{new-value}
  134. can be any Scheme expression. Even though we have not yet covered the
  135. forms that Scheme expressions can take (@pxref{About Expressions}), you
  136. can probably guess what the following @code{set!} example does@dots{}
  137. @lisp
  138. (set! x (+ x 1))
  139. @end lisp
  140. (Note: this is not a complete description of @code{define} and
  141. @code{set!}, because we need to introduce some other aspects of Scheme
  142. before the missing pieces can be filled in. If, however, you are
  143. already familiar with the structure of Scheme, you may like to read
  144. about those missing pieces immediately by jumping ahead to the following
  145. references.
  146. @itemize @bullet
  147. @item
  148. @ref{Lambda Alternatives}, to read about an alternative form of the
  149. @code{define} syntax that can be used when defining new procedures.
  150. @item
  151. @ref{Procedures with Setters}, to read about an alternative form of the
  152. @code{set!} syntax that helps with changing a single value in the depths
  153. of a compound data structure.)
  154. @item
  155. @xref{Internal Definitions}, to read about using @code{define} other
  156. than at top level in a Scheme program, including a discussion of when it
  157. works to use @code{define} rather than @code{set!} to change the value
  158. of an existing variable.
  159. @end itemize
  160. @node About Procedures
  161. @section The Representation and Use of Procedures
  162. This section introduces the basics of using and creating Scheme
  163. procedures. It discusses the representation of procedures as just
  164. another kind of Scheme value, and shows how procedure invocation
  165. expressions are constructed. We then explain how @code{lambda} is used
  166. to create new procedures, and conclude by presenting the various
  167. shorthand forms of @code{define} that can be used instead of writing an
  168. explicit @code{lambda} expression.
  169. @menu
  170. * Procedures as Values:: Procedures are values like everything else.
  171. * Simple Invocation:: How to write a simple procedure invocation.
  172. * Creating a Procedure:: How to create your own procedures.
  173. * Lambda Alternatives:: Other ways of writing procedure definitions.
  174. @end menu
  175. @node Procedures as Values
  176. @subsection Procedures as Values
  177. One of the great simplifications of Scheme is that a procedure is just
  178. another type of value, and that procedure values can be passed around
  179. and stored in variables in exactly the same way as, for example, strings
  180. and lists. When we talk about a built-in standard Scheme procedure such
  181. as @code{open-input-file}, what we actually mean is that there is a
  182. pre-defined top level variable called @code{open-input-file}, whose
  183. value is a procedure that implements what R5RS says that
  184. @code{open-input-file} should do.
  185. Note that this is quite different from many dialects of Lisp ---
  186. including Emacs Lisp --- in which a program can use the same name with
  187. two quite separate meanings: one meaning identifies a Lisp function,
  188. while the other meaning identifies a Lisp variable, whose value need
  189. have nothing to do with the function that is associated with the first
  190. meaning. In these dialects, functions and variables are said to live in
  191. different @dfn{namespaces}.
  192. In Scheme, on the other hand, all names belong to a single unified
  193. namespace, and the variables that these names identify can hold any kind
  194. of Scheme value, including procedure values.
  195. One consequence of the ``procedures as values'' idea is that, if you
  196. don't happen to like the standard name for a Scheme procedure, you can
  197. change it.
  198. For example, @code{call-with-current-continuation} is a very important
  199. standard Scheme procedure, but it also has a very long name! So, many
  200. programmers use the following definition to assign the same procedure
  201. value to the more convenient name @code{call/cc}.
  202. @lisp
  203. (define call/cc call-with-current-continuation)
  204. @end lisp
  205. Let's understand exactly how this works. The definition creates a new
  206. variable @code{call/cc}, and then sets its value to the value of the
  207. variable @code{call-with-current-continuation}; the latter value is a
  208. procedure that implements the behaviour that R5RS specifies under the
  209. name ``call-with-current-continuation''. So @code{call/cc} ends up
  210. holding this value as well.
  211. Now that @code{call/cc} holds the required procedure value, you could
  212. choose to use @code{call-with-current-continuation} for a completely
  213. different purpose, or just change its value so that you will get an
  214. error if you accidentally use @code{call-with-current-continuation} as a
  215. procedure in your program rather than @code{call/cc}. For example:
  216. @lisp
  217. (set! call-with-current-continuation "Not a procedure any more!")
  218. @end lisp
  219. Or you could just leave @code{call-with-current-continuation} as it was.
  220. It's perfectly fine for more than one variable to hold the same
  221. procedure value.
  222. @node Simple Invocation
  223. @subsection Simple Procedure Invocation
  224. A procedure invocation in Scheme is written like this:
  225. @lisp
  226. (@var{procedure} [@var{arg1} [@var{arg2} @dots{}]])
  227. @end lisp
  228. In this expression, @var{procedure} can be any Scheme expression whose
  229. value is a procedure. Most commonly, however, @var{procedure} is simply
  230. the name of a variable whose value is a procedure.
  231. For example, @code{string-append} is a standard Scheme procedure whose
  232. behaviour is to concatenate together all the arguments, which are
  233. expected to be strings, that it is given. So the expression
  234. @lisp
  235. (string-append "/home" "/" "andrew")
  236. @end lisp
  237. @noindent
  238. is a procedure invocation whose result is the string value
  239. @code{"/home/andrew"}.
  240. Similarly, @code{string-length} is a standard Scheme procedure that
  241. returns the length of a single string argument, so
  242. @lisp
  243. (string-length "abc")
  244. @end lisp
  245. @noindent
  246. is a procedure invocation whose result is the numeric value 3.
  247. Each of the parameters in a procedure invocation can itself be any
  248. Scheme expression. Since a procedure invocation is itself a type of
  249. expression, we can put these two examples together to get
  250. @lisp
  251. (string-length (string-append "/home" "/" "andrew"))
  252. @end lisp
  253. @noindent
  254. --- a procedure invocation whose result is the numeric value 12.
  255. (You may be wondering what happens if the two examples are combined the
  256. other way round. If we do this, we can make a procedure invocation
  257. expression that is @emph{syntactically} correct:
  258. @lisp
  259. (string-append "/home" (string-length "abc"))
  260. @end lisp
  261. @noindent
  262. but when this expression is executed, it will cause an error, because
  263. the result of @code{(string-length "abc")} is a numeric value, and
  264. @code{string-append} is not designed to accept a numeric value as one of
  265. its arguments.)
  266. @node Creating a Procedure
  267. @subsection Creating and Using a New Procedure
  268. Scheme has lots of standard procedures, and Guile provides all of these
  269. via predefined top level variables. All of these standard procedures
  270. are documented in the later chapters of this reference manual.
  271. Before very long, though, you will want to create new procedures that
  272. encapsulate aspects of your own applications' functionality. To do
  273. this, you can use the famous @code{lambda} syntax.
  274. For example, the value of the following Scheme expression
  275. @lisp
  276. (lambda (name address) @var{body} @dots{})
  277. @end lisp
  278. @noindent
  279. is a newly created procedure that takes two arguments: @code{name} and
  280. @code{address}. The behaviour of the new procedure is determined by the
  281. sequence of expressions and definitions in the @var{body} of the
  282. procedure definition. (Typically, @var{body} would use the arguments in
  283. some way, or else there wouldn't be any point in giving them to the
  284. procedure.) When invoked, the new procedure returns a value that is the
  285. value of the last expression in the @var{body}.
  286. To make things more concrete, let's suppose that the two arguments are
  287. both strings, and that the purpose of this procedure is to form a
  288. combined string that includes these arguments. Then the full lambda
  289. expression might look like this:
  290. @lisp
  291. (lambda (name address)
  292. (string-append "Name=" name ":Address=" address))
  293. @end lisp
  294. We noted in the previous subsection that the @var{procedure} part of a
  295. procedure invocation expression can be any Scheme expression whose value
  296. is a procedure. But that's exactly what a lambda expression is! So we
  297. can use a lambda expression directly in a procedure invocation, like
  298. this:
  299. @lisp
  300. ((lambda (name address)
  301. (string-append "Name=" name ":Address=" address))
  302. "FSF"
  303. "Cambridge")
  304. @end lisp
  305. @noindent
  306. This is a valid procedure invocation expression, and its result is the
  307. string:
  308. @lisp
  309. "Name=FSF:Address=Cambridge"
  310. @end lisp
  311. It is more common, though, to store the procedure value in a variable ---
  312. @lisp
  313. (define make-combined-string
  314. (lambda (name address)
  315. (string-append "Name=" name ":Address=" address)))
  316. @end lisp
  317. @noindent
  318. --- and then to use the variable name in the procedure invocation:
  319. @lisp
  320. (make-combined-string "FSF" "Cambridge")
  321. @end lisp
  322. @noindent
  323. Which has exactly the same result.
  324. It's important to note that procedures created using @code{lambda} have
  325. exactly the same status as the standard built in Scheme procedures, and
  326. can be invoked, passed around, and stored in variables in exactly the
  327. same ways.
  328. @node Lambda Alternatives
  329. @subsection Lambda Alternatives
  330. Since it is so common in Scheme programs to want to create a procedure
  331. and then store it in a variable, there is an alternative form of the
  332. @code{define} syntax that allows you to do just that.
  333. A @code{define} expression of the form
  334. @lisp
  335. (define (@var{name} [@var{arg1} [@var{arg2} @dots{}]])
  336. @var{body} @dots{})
  337. @end lisp
  338. @noindent
  339. is exactly equivalent to the longer form
  340. @lisp
  341. (define @var{name}
  342. (lambda ([@var{arg1} [@var{arg2} @dots{}]])
  343. @var{body} @dots{}))
  344. @end lisp
  345. So, for example, the definition of @code{make-combined-string} in the
  346. previous subsection could equally be written:
  347. @lisp
  348. (define (make-combined-string name address)
  349. (string-append "Name=" name ":Address=" address))
  350. @end lisp
  351. This kind of procedure definition creates a procedure that requires
  352. exactly the expected number of arguments. There are two further forms
  353. of the @code{lambda} expression, which create a procedure that can
  354. accept a variable number of arguments:
  355. @lisp
  356. (lambda (@var{arg1} @dots{} . @var{args}) @var{body} @dots{})
  357. (lambda @var{args} @var{body} @dots{})
  358. @end lisp
  359. @noindent
  360. The corresponding forms of the alternative @code{define} syntax are:
  361. @lisp
  362. (define (@var{name} @var{arg1} @dots{} . @var{args}) @var{body} @dots{})
  363. (define (@var{name} . @var{args}) @var{body} @dots{})
  364. @end lisp
  365. @noindent
  366. For details on how these forms work, see @xref{Lambda}.
  367. Prior to Guile 2.0, Guile provided an extension to @code{define} syntax
  368. that allowed you to nest the previous extension up to an arbitrary
  369. depth. These are no longer provided by default, and instead have been
  370. moved to @ref{Curried Definitions}.
  371. (It could be argued that the alternative @code{define} forms are rather
  372. confusing, especially for newcomers to the Scheme language, as they hide
  373. both the role of @code{lambda} and the fact that procedures are values
  374. that are stored in variables in the same way as any other kind of value.
  375. On the other hand, they are very convenient, and they are also a good
  376. example of another of Scheme's powerful features: the ability to specify
  377. arbitrary syntactic transformations at run time, which can be applied to
  378. subsequently read input.)
  379. @node About Expressions
  380. @section Expressions and Evaluation
  381. So far, we have met expressions that @emph{do} things, such as the
  382. @code{define} expressions that create and initialize new variables, and
  383. we have also talked about expressions that have @emph{values}, for
  384. example the value of the procedure invocation expression:
  385. @lisp
  386. (string-append "/home" "/" "andrew")
  387. @end lisp
  388. @noindent
  389. but we haven't yet been precise about what causes an expression like
  390. this procedure invocation to be reduced to its ``value'', or how the
  391. processing of such expressions relates to the execution of a Scheme
  392. program as a whole.
  393. This section clarifies what we mean by an expression's value, by
  394. introducing the idea of @dfn{evaluation}. It discusses the side effects
  395. that evaluation can have, explains how each of the various types of
  396. Scheme expression is evaluated, and describes the behaviour and use of
  397. the Guile REPL as a mechanism for exploring evaluation. The section
  398. concludes with a very brief summary of Scheme's common syntactic
  399. expressions.
  400. @menu
  401. * Evaluating:: How a Scheme program is executed.
  402. * Tail Calls:: Space-safe recursion.
  403. * The REPL:: Interacting with the Guile interpreter.
  404. * Syntax Summary:: Common syntactic expressions -- in brief.
  405. @end menu
  406. @node Evaluating
  407. @subsection Evaluating Expressions and Executing Programs
  408. In Scheme, the process of executing an expression is known as
  409. @dfn{evaluation}. Evaluation has two kinds of result:
  410. @itemize @bullet
  411. @item
  412. the @dfn{value} of the evaluated expression
  413. @item
  414. the @dfn{side effects} of the evaluation, which consist of any effects of
  415. evaluating the expression that are not represented by the value.
  416. @end itemize
  417. Of the expressions that we have met so far, @code{define} and
  418. @code{set!} expressions have side effects --- the creation or
  419. modification of a variable --- but no value; @code{lambda} expressions
  420. have values --- the newly constructed procedures --- but no side
  421. effects; and procedure invocation expressions, in general, have either
  422. values, or side effects, or both.
  423. It is tempting to try to define more intuitively what we mean by
  424. ``value'' and ``side effects'', and what the difference between them is.
  425. In general, though, this is extremely difficult. It is also
  426. unnecessary; instead, we can quite happily define the behaviour of a
  427. Scheme program by specifying how Scheme executes a program as a whole,
  428. and then by describing the value and side effects of evaluation for each
  429. type of expression individually.
  430. @noindent
  431. So, some@footnote{These definitions are approximate. For the whole
  432. and detailed truth, see @ref{Formal syntax and semantics,R5RS
  433. syntax,,r5rs,The Revised(5) Report on the Algorithmic Language
  434. Scheme}.} definitions@dots{}
  435. @itemize @bullet
  436. @item
  437. A Scheme program consists of a sequence of expressions.
  438. @item
  439. A Scheme interpreter executes the program by evaluating these
  440. expressions in order, one by one.
  441. @item
  442. An expression can be
  443. @itemize @bullet
  444. @item
  445. a piece of literal data, such as a number @code{2.3} or a string
  446. @code{"Hello world!"}
  447. @item
  448. a variable name
  449. @item
  450. a procedure invocation expression
  451. @item
  452. one of Scheme's special syntactic expressions.
  453. @end itemize
  454. @end itemize
  455. @noindent
  456. The following subsections describe how each of these types of expression
  457. is evaluated.
  458. @menu
  459. * Eval Literal:: Evaluating literal data.
  460. * Eval Variable:: Evaluating variable references.
  461. * Eval Procedure:: Evaluating procedure invocation expressions.
  462. * Eval Special:: Evaluating special syntactic expressions.
  463. @end menu
  464. @node Eval Literal
  465. @subsubsection Evaluating Literal Data
  466. When a literal data expression is evaluated, the value of the expression
  467. is simply the value that the expression describes. The evaluation of a
  468. literal data expression has no side effects.
  469. @noindent
  470. So, for example,
  471. @itemize @bullet
  472. @item
  473. the value of the expression @code{"abc"} is the string value
  474. @code{"abc"}
  475. @item
  476. the value of the expression @code{3+4i} is the complex number 3 + 4i
  477. @item
  478. the value of the expression @code{#(1 2 3)} is a three-element vector
  479. containing the numeric values 1, 2 and 3.
  480. @end itemize
  481. For any data type which can be expressed literally like this, the syntax
  482. of the literal data expression for that data type --- in other words,
  483. what you need to write in your code to indicate a literal value of that
  484. type --- is known as the data type's @dfn{read syntax}. This manual
  485. specifies the read syntax for each such data type in the section that
  486. describes that data type.
  487. Some data types do not have a read syntax. Procedures, for example,
  488. cannot be expressed as literal data; they must be created using a
  489. @code{lambda} expression (@pxref{Creating a Procedure}) or implicitly
  490. using the shorthand form of @code{define} (@pxref{Lambda Alternatives}).
  491. @node Eval Variable
  492. @subsubsection Evaluating a Variable Reference
  493. When an expression that consists simply of a variable name is evaluated,
  494. the value of the expression is the value of the named variable. The
  495. evaluation of a variable reference expression has no side effects.
  496. So, after
  497. @lisp
  498. (define key "Paul Evans")
  499. @end lisp
  500. @noindent
  501. the value of the expression @code{key} is the string value @code{"Paul
  502. Evans"}. If @var{key} is then modified by
  503. @lisp
  504. (set! key 3.74)
  505. @end lisp
  506. @noindent
  507. the value of the expression @code{key} is the numeric value 3.74.
  508. If there is no variable with the specified name, evaluation of the
  509. variable reference expression signals an error.
  510. @node Eval Procedure
  511. @subsubsection Evaluating a Procedure Invocation Expression
  512. This is where evaluation starts getting interesting! As already noted,
  513. a procedure invocation expression has the form
  514. @lisp
  515. (@var{procedure} [@var{arg1} [@var{arg2} @dots{}]])
  516. @end lisp
  517. @noindent
  518. where @var{procedure} must be an expression whose value, when evaluated,
  519. is a procedure.
  520. The evaluation of a procedure invocation expression like this proceeds
  521. by
  522. @itemize @bullet
  523. @item
  524. evaluating individually the expressions @var{procedure}, @var{arg1},
  525. @var{arg2}, and so on
  526. @item
  527. calling the procedure that is the value of the @var{procedure}
  528. expression with the list of values obtained from the evaluations of
  529. @var{arg1}, @var{arg2} etc. as its parameters.
  530. @end itemize
  531. For a procedure defined in Scheme, ``calling the procedure with the list
  532. of values as its parameters'' means binding the values to the
  533. procedure's formal parameters and then evaluating the sequence of
  534. expressions that make up the body of the procedure definition. The
  535. value of the procedure invocation expression is the value of the last
  536. evaluated expression in the procedure body. The side effects of calling
  537. the procedure are the combination of the side effects of the sequence of
  538. evaluations of expressions in the procedure body.
  539. For a built-in procedure, the value and side-effects of calling the
  540. procedure are best described by that procedure's documentation.
  541. Note that the complete side effects of evaluating a procedure invocation
  542. expression consist not only of the side effects of the procedure call,
  543. but also of any side effects of the preceding evaluation of the
  544. expressions @var{procedure}, @var{arg1}, @var{arg2}, and so on.
  545. To illustrate this, let's look again at the procedure invocation
  546. expression:
  547. @lisp
  548. (string-length (string-append "/home" "/" "andrew"))
  549. @end lisp
  550. In the outermost expression, @var{procedure} is @code{string-length} and
  551. @var{arg1} is @code{(string-append "/home" "/" "andrew")}.
  552. @itemize @bullet
  553. @item
  554. Evaluation of @code{string-length}, which is a variable, gives a
  555. procedure value that implements the expected behaviour for
  556. ``string-length''.
  557. @item
  558. Evaluation of @code{(string-append "/home" "/" "andrew")}, which is
  559. another procedure invocation expression, means evaluating each of
  560. @itemize @bullet
  561. @item
  562. @code{string-append}, which gives a procedure value that implements the
  563. expected behaviour for ``string-append''
  564. @item
  565. @code{"/home"}, which gives the string value @code{"/home"}
  566. @item
  567. @code{"/"}, which gives the string value @code{"/"}
  568. @item
  569. @code{"andrew"}, which gives the string value @code{"andrew"}
  570. @end itemize
  571. and then invoking the procedure value with this list of string values as
  572. its arguments. The resulting value is a single string value that is the
  573. concatenation of all the arguments, namely @code{"/home/andrew"}.
  574. @end itemize
  575. In the evaluation of the outermost expression, the interpreter can now
  576. invoke the procedure value obtained from @var{procedure} with the value
  577. obtained from @var{arg1} as its arguments. The resulting value is a
  578. numeric value that is the length of the argument string, which is 12.
  579. @node Eval Special
  580. @subsubsection Evaluating Special Syntactic Expressions
  581. When a procedure invocation expression is evaluated, the procedure and
  582. @emph{all} the argument expressions must be evaluated before the
  583. procedure can be invoked. Special syntactic expressions are special
  584. because they are able to manipulate their arguments in an unevaluated
  585. form, and can choose whether to evaluate any or all of the argument
  586. expressions.
  587. Why is this needed? Consider a program fragment that asks the user
  588. whether or not to delete a file, and then deletes the file if the user
  589. answers yes.
  590. @lisp
  591. (if (string=? (read-answer "Should I delete this file?")
  592. "yes")
  593. (delete-file file))
  594. @end lisp
  595. If the outermost @code{(if @dots{})} expression here was a procedure
  596. invocation expression, the expression @code{(delete-file file)}, whose
  597. side effect is to actually delete a file, would already have been
  598. evaluated before the @code{if} procedure even got invoked! Clearly this
  599. is no use --- the whole point of an @code{if} expression is that the
  600. @dfn{consequent} expression is only evaluated if the condition of the
  601. @code{if} expression is ``true''.
  602. Therefore @code{if} must be special syntax, not a procedure. Other
  603. special syntaxes that we have already met are @code{define}, @code{set!}
  604. and @code{lambda}. @code{define} and @code{set!} are syntax because
  605. they need to know the variable @emph{name} that is given as the first
  606. argument in a @code{define} or @code{set!} expression, not that
  607. variable's value. @code{lambda} is syntax because it does not
  608. immediately evaluate the expressions that define the procedure body;
  609. instead it creates a procedure object that incorporates these
  610. expressions so that they can be evaluated in the future, when that
  611. procedure is invoked.
  612. The rules for evaluating each special syntactic expression are specified
  613. individually for each special syntax. For a summary of standard special
  614. syntax, see @xref{Syntax Summary}.
  615. @node Tail Calls
  616. @subsection Tail calls
  617. @cindex tail calls
  618. @cindex recursion
  619. Scheme is ``properly tail recursive'', meaning that tail calls or
  620. recursions from certain contexts do not consume stack space or other
  621. resources and can therefore be used on arbitrarily large data or for
  622. an arbitrarily long calculation. Consider for example,
  623. @example
  624. (define (foo n)
  625. (display n)
  626. (newline)
  627. (foo (1+ n)))
  628. (foo 1)
  629. @print{}
  630. 1
  631. 2
  632. 3
  633. @dots{}
  634. @end example
  635. @code{foo} prints numbers infinitely, starting from the given @var{n}.
  636. It's implemented by printing @var{n} then recursing to itself to print
  637. @math{@var{n}+1} and so on. This recursion is a tail call, it's the
  638. last thing done, and in Scheme such tail calls can be made without
  639. limit.
  640. Or consider a case where a value is returned, a version of the SRFI-1
  641. @code{last} function (@pxref{SRFI-1 Selectors}) returning the last
  642. element of a list,
  643. @example
  644. (define (my-last lst)
  645. (if (null? (cdr lst))
  646. (car lst)
  647. (my-last (cdr lst))))
  648. (my-last '(1 2 3)) @result{} 3
  649. @end example
  650. If the list has more than one element, @code{my-last} applies itself
  651. to the @code{cdr}. This recursion is a tail call, there's no code
  652. after it, and the return value is the return value from that call. In
  653. Scheme this can be used on an arbitrarily long list argument.
  654. @sp 1
  655. A proper tail call is only available from certain contexts, namely the
  656. following special form positions,
  657. @itemize @bullet
  658. @item
  659. @code{and} --- last expression
  660. @item
  661. @code{begin} --- last expression
  662. @item
  663. @code{case} --- last expression in each clause
  664. @item
  665. @code{cond} --- last expression in each clause, and the call to a
  666. @code{=>} procedure is a tail call
  667. @item
  668. @code{do} --- last result expression
  669. @item
  670. @code{if} --- ``true'' and ``false'' leg expressions
  671. @item
  672. @code{lambda} --- last expression in body
  673. @item
  674. @code{let}, @code{let*}, @code{letrec}, @code{let-syntax},
  675. @code{letrec-syntax} --- last expression in body
  676. @item
  677. @code{or} --- last expression
  678. @end itemize
  679. @noindent
  680. The following core functions make tail calls,
  681. @itemize @bullet
  682. @item
  683. @code{apply} --- tail call to given procedure
  684. @item
  685. @code{call-with-current-continuation} --- tail call to the procedure
  686. receiving the new continuation
  687. @item
  688. @code{call-with-values} --- tail call to the values-receiving
  689. procedure
  690. @item
  691. @code{eval} --- tail call to evaluate the form
  692. @item
  693. @code{string-any}, @code{string-every} --- tail call to predicate on
  694. the last character (if that point is reached)
  695. @end itemize
  696. @sp 1
  697. The above are just core functions and special forms. Tail calls in
  698. other modules are described with the relevant documentation, for
  699. example SRFI-1 @code{any} and @code{every} (@pxref{SRFI-1 Searching}).
  700. It will be noted there are a lot of places which could potentially be
  701. tail calls, for instance the last call in a @code{for-each}, but only
  702. those explicitly described are guaranteed.
  703. @node The REPL
  704. @subsection Using the Guile REPL
  705. If you start Guile without specifying a particular program for it to
  706. execute, Guile enters its standard Read Evaluate Print Loop --- or
  707. @dfn{REPL} for short. In this mode, Guile repeatedly reads in the next
  708. Scheme expression that the user types, evaluates it, and prints the
  709. resulting value.
  710. The REPL is a useful mechanism for exploring the evaluation behaviour
  711. described in the previous subsection. If you type @code{string-append},
  712. for example, the REPL replies @code{#<primitive-procedure
  713. string-append>}, illustrating the relationship between the variable
  714. @code{string-append} and the procedure value stored in that variable.
  715. In this manual, the notation @result{} is used to mean ``evaluates
  716. to''. Wherever you see an example of the form
  717. @lisp
  718. @var{expression}
  719. @result{}
  720. @var{result}
  721. @end lisp
  722. @noindent
  723. feel free to try it out yourself by typing @var{expression} into the
  724. REPL and checking that it gives the expected @var{result}.
  725. @node Syntax Summary
  726. @subsection Summary of Common Syntax
  727. This subsection lists the most commonly used Scheme syntactic
  728. expressions, simply so that you will recognize common special syntax
  729. when you see it. For a full description of each of these syntaxes,
  730. follow the appropriate reference.
  731. @code{lambda} (@pxref{Lambda}) is used to construct procedure objects.
  732. @code{define} (@pxref{Top Level}) is used to create a new variable and
  733. set its initial value.
  734. @code{set!} (@pxref{Top Level}) is used to modify an existing variable's
  735. value.
  736. @code{let}, @code{let*} and @code{letrec} (@pxref{Local Bindings})
  737. create an inner lexical environment for the evaluation of a sequence of
  738. expressions, in which a specified set of local variables is bound to the
  739. values of a corresponding set of expressions. For an introduction to
  740. environments, see @xref{About Closure}.
  741. @code{begin} (@pxref{begin}) executes a sequence of expressions in order
  742. and returns the value of the last expression. Note that this is not the
  743. same as a procedure which returns its last argument, because the
  744. evaluation of a procedure invocation expression does not guarantee to
  745. evaluate the arguments in order.
  746. @code{if} and @code{cond} (@pxref{Conditionals}) provide conditional
  747. evaluation of argument expressions depending on whether one or more
  748. conditions evaluate to ``true'' or ``false''.
  749. @code{case} (@pxref{Conditionals}) provides conditional evaluation of
  750. argument expressions depending on whether a variable has one of a
  751. specified group of values.
  752. @code{and} (@pxref{and or}) executes a sequence of expressions in order
  753. until either there are no expressions left, or one of them evaluates to
  754. ``false''.
  755. @code{or} (@pxref{and or}) executes a sequence of expressions in order
  756. until either there are no expressions left, or one of them evaluates to
  757. ``true''.
  758. @node About Closure
  759. @section The Concept of Closure
  760. @cindex closure
  761. The concept of @dfn{closure} is the idea that a lambda expression
  762. ``captures'' the variable bindings that are in lexical scope at the
  763. point where the lambda expression occurs. The procedure created by the
  764. lambda expression can refer to and mutate the captured bindings, and the
  765. values of those bindings persist between procedure calls.
  766. This section explains and explores the various parts of this idea in
  767. more detail.
  768. @menu
  769. * About Environments:: Names, locations, values and environments.
  770. * Local Variables:: Local variables and local environments.
  771. * Chaining:: Environment chaining.
  772. * Lexical Scope:: The meaning of lexical scoping.
  773. * Closure:: Explaining the concept of closure.
  774. * Serial Number:: Example 1: a serial number generator.
  775. * Shared Variable:: Example 2: a shared persistent variable.
  776. * Callback Closure:: Example 3: the callback closure problem.
  777. * OO Closure:: Example 4: object orientation.
  778. @end menu
  779. @node About Environments
  780. @subsection Names, Locations, Values and Environments
  781. @cindex location
  782. @cindex environment
  783. @cindex vcell
  784. @cindex top level environment
  785. @cindex environment, top level
  786. We said earlier that a variable name in a Scheme program is associated
  787. with a location in which any kind of Scheme value may be stored.
  788. (Incidentally, the term ``vcell'' is often used in Lisp and Scheme
  789. circles as an alternative to ``location''.) Thus part of what we mean
  790. when we talk about ``creating a variable'' is in fact establishing an
  791. association between a name, or identifier, that is used by the Scheme
  792. program code, and the variable location to which that name refers.
  793. Although the value that is stored in that location may change, the
  794. location to which a given name refers is always the same.
  795. We can illustrate this by breaking down the operation of the
  796. @code{define} syntax into three parts: @code{define}
  797. @itemize @bullet
  798. @item
  799. creates a new location
  800. @item
  801. establishes an association between that location and the name specified
  802. as the first argument of the @code{define} expression
  803. @item
  804. stores in that location the value obtained by evaluating the second
  805. argument of the @code{define} expression.
  806. @end itemize
  807. A collection of associations between names and locations is called an
  808. @dfn{environment}. When you create a top level variable in a program
  809. using @code{define}, the name-location association for that variable is
  810. added to the ``top level'' environment. The ``top level'' environment
  811. also includes name-location associations for all the procedures that are
  812. supplied by standard Scheme.
  813. It is also possible to create environments other than the top level one,
  814. and to create variable bindings, or name-location associations, in those
  815. environments. This ability is a key ingredient in the concept of
  816. closure; the next subsection shows how it is done.
  817. @node Local Variables
  818. @subsection Local Variables and Environments
  819. @cindex local variable
  820. @cindex variable, local
  821. @cindex local environment
  822. @cindex environment, local
  823. We have seen how to create top level variables using the @code{define}
  824. syntax (@pxref{Definition}). It is often useful to create variables
  825. that are more limited in their scope, typically as part of a procedure
  826. body. In Scheme, this is done using the @code{let} syntax, or one of
  827. its modified forms @code{let*} and @code{letrec}. These syntaxes are
  828. described in full later in the manual (@pxref{Local Bindings}). Here
  829. our purpose is to illustrate their use just enough that we can see how
  830. local variables work.
  831. For example, the following code uses a local variable @code{s} to
  832. simplify the computation of the area of a triangle given the lengths of
  833. its three sides.
  834. @lisp
  835. (define a 5.3)
  836. (define b 4.7)
  837. (define c 2.8)
  838. (define area
  839. (let ((s (/ (+ a b c) 2)))
  840. (sqrt (* s (- s a) (- s b) (- s c)))))
  841. @end lisp
  842. The effect of the @code{let} expression is to create a new environment
  843. and, within this environment, an association between the name @code{s}
  844. and a new location whose initial value is obtained by evaluating
  845. @code{(/ (+ a b c) 2)}. The expressions in the body of the @code{let},
  846. namely @code{(sqrt (* s (- s a) (- s b) (- s c)))}, are then evaluated
  847. in the context of the new environment, and the value of the last
  848. expression evaluated becomes the value of the whole @code{let}
  849. expression, and therefore the value of the variable @code{area}.
  850. @node Chaining
  851. @subsection Environment Chaining
  852. @cindex shadowing an imported variable binding
  853. @cindex chaining environments
  854. In the example of the previous subsection, we glossed over an important
  855. point. The body of the @code{let} expression in that example refers not
  856. only to the local variable @code{s}, but also to the top level variables
  857. @code{a}, @code{b}, @code{c} and @code{sqrt}. (@code{sqrt} is the
  858. standard Scheme procedure for calculating a square root.) If the body
  859. of the @code{let} expression is evaluated in the context of the
  860. @emph{local} @code{let} environment, how does the evaluation get at the
  861. values of these top level variables?
  862. The answer is that the local environment created by a @code{let}
  863. expression automatically has a reference to its containing environment
  864. --- in this case the top level environment --- and that the Scheme
  865. interpreter automatically looks for a variable binding in the containing
  866. environment if it doesn't find one in the local environment. More
  867. generally, every environment except for the top level one has a
  868. reference to its containing environment, and the interpreter keeps
  869. searching back up the chain of environments --- from most local to top
  870. level --- until it either finds a variable binding for the required
  871. identifier or exhausts the chain.
  872. This description also determines what happens when there is more than
  873. one variable binding with the same name. Suppose, continuing the
  874. example of the previous subsection, that there was also a pre-existing
  875. top level variable @code{s} created by the expression:
  876. @lisp
  877. (define s "Some beans, my lord!")
  878. @end lisp
  879. Then both the top level environment and the local @code{let} environment
  880. would contain bindings for the name @code{s}. When evaluating code
  881. within the @code{let} body, the interpreter looks first in the local
  882. @code{let} environment, and so finds the binding for @code{s} created by
  883. the @code{let} syntax. Even though this environment has a reference to
  884. the top level environment, which also has a binding for @code{s}, the
  885. interpreter doesn't get as far as looking there. When evaluating code
  886. outside the @code{let} body, the interpreter looks up variable names in
  887. the top level environment, so the name @code{s} refers to the top level
  888. variable.
  889. Within the @code{let} body, the binding for @code{s} in the local
  890. environment is said to @dfn{shadow} the binding for @code{s} in the top
  891. level environment.
  892. @node Lexical Scope
  893. @subsection Lexical Scope
  894. The rules that we have just been describing are the details of how
  895. Scheme implements ``lexical scoping''. This subsection takes a brief
  896. diversion to explain what lexical scope means in general and to present
  897. an example of non-lexical scoping.
  898. ``Lexical scope'' in general is the idea that
  899. @itemize @bullet
  900. @item
  901. an identifier at a particular place in a program always refers to the
  902. same variable location --- where ``always'' means ``every time that the
  903. containing expression is executed'', and that
  904. @item
  905. the variable location to which it refers can be determined by static
  906. examination of the source code context in which that identifier appears,
  907. without having to consider the flow of execution through the program as
  908. a whole.
  909. @end itemize
  910. In practice, lexical scoping is the norm for most programming languages,
  911. and probably corresponds to what you would intuitively consider to be
  912. ``normal''. You may even be wondering how the situation could possibly
  913. --- and usefully --- be otherwise. To demonstrate that another kind of
  914. scoping is possible, therefore, and to compare it against lexical
  915. scoping, the following subsection presents an example of non-lexical
  916. scoping and examines in detail how its behavior differs from the
  917. corresponding lexically scoped code.
  918. @menu
  919. * Scoping Example:: An example of non-lexical scoping.
  920. @end menu
  921. @node Scoping Example
  922. @subsubsection An Example of Non-Lexical Scoping
  923. To demonstrate that non-lexical scoping does exist and can be useful, we
  924. present the following example from Emacs Lisp, which is a ``dynamically
  925. scoped'' language.
  926. @lisp
  927. (defvar currency-abbreviation "USD")
  928. (defun currency-string (units hundredths)
  929. (concat currency-abbreviation
  930. (number-to-string units)
  931. "."
  932. (number-to-string hundredths)))
  933. (defun french-currency-string (units hundredths)
  934. (let ((currency-abbreviation "FRF"))
  935. (currency-string units hundredths)))
  936. @end lisp
  937. The question to focus on here is: what does the identifier
  938. @code{currency-abbreviation} refer to in the @code{currency-string}
  939. function? The answer, in Emacs Lisp, is that all variable bindings go
  940. onto a single stack, and that @code{currency-abbreviation} refers to the
  941. topmost binding from that stack which has the name
  942. ``currency-abbreviation''. The binding that is created by the
  943. @code{defvar} form, to the value @code{"USD"}, is only relevant if none
  944. of the code that calls @code{currency-string} rebinds the name
  945. ``currency-abbreviation'' in the meanwhile.
  946. The second function @code{french-currency-string} works precisely by
  947. taking advantage of this behaviour. It creates a new binding for the
  948. name ``currency-abbreviation'' which overrides the one established by
  949. the @code{defvar} form.
  950. @lisp
  951. ;; Note! This is Emacs Lisp evaluation, not Scheme!
  952. (french-currency-string 33 44)
  953. @result{}
  954. "FRF33.44"
  955. @end lisp
  956. Now let's look at the corresponding, @emph{lexically scoped} Scheme
  957. code:
  958. @lisp
  959. (define currency-abbreviation "USD")
  960. (define (currency-string units hundredths)
  961. (string-append currency-abbreviation
  962. (number->string units)
  963. "."
  964. (number->string hundredths)))
  965. (define (french-currency-string units hundredths)
  966. (let ((currency-abbreviation "FRF"))
  967. (currency-string units hundredths)))
  968. @end lisp
  969. According to the rules of lexical scoping, the
  970. @code{currency-abbreviation} in @code{currency-string} refers to the
  971. variable location in the innermost environment at that point in the code
  972. which has a binding for @code{currency-abbreviation}, which is the
  973. variable location in the top level environment created by the preceding
  974. @code{(define currency-abbreviation @dots{})} expression.
  975. In Scheme, therefore, the @code{french-currency-string} procedure does
  976. not work as intended. The variable binding that it creates for
  977. ``currency-abbreviation'' is purely local to the code that forms the
  978. body of the @code{let} expression. Since this code doesn't directly use
  979. the name ``currency-abbreviation'' at all, the binding is pointless.
  980. @lisp
  981. (french-currency-string 33 44)
  982. @result{}
  983. "USD33.44"
  984. @end lisp
  985. This begs the question of how the Emacs Lisp behaviour can be
  986. implemented in Scheme. In general, this is a design question whose
  987. answer depends upon the problem that is being addressed. In this case,
  988. the best answer may be that @code{currency-string} should be
  989. redesigned so that it can take an optional third argument. This third
  990. argument, if supplied, is interpreted as a currency abbreviation that
  991. overrides the default.
  992. It is possible to change @code{french-currency-string} so that it mostly
  993. works without changing @code{currency-string}, but the fix is inelegant,
  994. and susceptible to interrupts that could leave the
  995. @code{currency-abbreviation} variable in the wrong state:
  996. @lisp
  997. (define (french-currency-string units hundredths)
  998. (set! currency-abbreviation "FRF")
  999. (let ((result (currency-string units hundredths)))
  1000. (set! currency-abbreviation "USD")
  1001. result))
  1002. @end lisp
  1003. The key point here is that the code does not create any local binding
  1004. for the identifier @code{currency-abbreviation}, so all occurrences of
  1005. this identifier refer to the top level variable.
  1006. @node Closure
  1007. @subsection Closure
  1008. Consider a @code{let} expression that doesn't contain any
  1009. @code{lambda}s:
  1010. @lisp
  1011. (let ((s (/ (+ a b c) 2)))
  1012. (sqrt (* s (- s a) (- s b) (- s c))))
  1013. @end lisp
  1014. @noindent
  1015. When the Scheme interpreter evaluates this, it
  1016. @itemize @bullet
  1017. @item
  1018. creates a new environment with a reference to the environment that was
  1019. current when it encountered the @code{let}
  1020. @item
  1021. creates a variable binding for @code{s} in the new environment, with
  1022. value given by @code{(/ (+ a b c) 2)}
  1023. @item
  1024. evaluates the expression in the body of the @code{let} in the context of
  1025. the new local environment, and remembers the value @code{V}
  1026. @item
  1027. forgets the local environment
  1028. @item
  1029. continues evaluating the expression that contained the @code{let}, using
  1030. the value @code{V} as the value of the @code{let} expression, in the
  1031. context of the containing environment.
  1032. @end itemize
  1033. After the @code{let} expression has been evaluated, the local
  1034. environment that was created is simply forgotten, and there is no longer
  1035. any way to access the binding that was created in this environment. If
  1036. the same code is evaluated again, it will follow the same steps again,
  1037. creating a second new local environment that has no connection with the
  1038. first, and then forgetting this one as well.
  1039. If the @code{let} body contains a @code{lambda} expression, however, the
  1040. local environment is @emph{not} forgotten. Instead, it becomes
  1041. associated with the procedure that is created by the @code{lambda}
  1042. expression, and is reinstated every time that that procedure is called.
  1043. In detail, this works as follows.
  1044. @itemize @bullet
  1045. @item
  1046. When the Scheme interpreter evaluates a @code{lambda} expression, to
  1047. create a procedure object, it stores the current environment as part of
  1048. the procedure definition.
  1049. @item
  1050. Then, whenever that procedure is called, the interpreter reinstates the
  1051. environment that is stored in the procedure definition and evaluates the
  1052. procedure body within the context of that environment.
  1053. @end itemize
  1054. The result is that the procedure body is always evaluated in the context
  1055. of the environment that was current when the procedure was created.
  1056. This is what is meant by @dfn{closure}. The next few subsections
  1057. present examples that explore the usefulness of this concept.
  1058. @node Serial Number
  1059. @subsection Example 1: A Serial Number Generator
  1060. This example uses closure to create a procedure with a variable binding
  1061. that is private to the procedure, like a local variable, but whose value
  1062. persists between procedure calls.
  1063. @lisp
  1064. (define (make-serial-number-generator)
  1065. (let ((current-serial-number 0))
  1066. (lambda ()
  1067. (set! current-serial-number (+ current-serial-number 1))
  1068. current-serial-number)))
  1069. (define entry-sn-generator (make-serial-number-generator))
  1070. (entry-sn-generator)
  1071. @result{}
  1072. 1
  1073. (entry-sn-generator)
  1074. @result{}
  1075. 2
  1076. @end lisp
  1077. When @code{make-serial-number-generator} is called, it creates a local
  1078. environment with a binding for @code{current-serial-number} whose
  1079. initial value is 0, then, within this environment, creates a procedure.
  1080. The local environment is stored within the created procedure object and
  1081. so persists for the lifetime of the created procedure.
  1082. Every time the created procedure is invoked, it increments the value of
  1083. the @code{current-serial-number} binding in the captured environment and
  1084. then returns the current value.
  1085. Note that @code{make-serial-number-generator} can be called again to
  1086. create a second serial number generator that is independent of the
  1087. first. Every new invocation of @code{make-serial-number-generator}
  1088. creates a new local @code{let} environment and returns a new procedure
  1089. object with an association to this environment.
  1090. @node Shared Variable
  1091. @subsection Example 2: A Shared Persistent Variable
  1092. This example uses closure to create two procedures, @code{get-balance}
  1093. and @code{deposit}, that both refer to the same captured local
  1094. environment so that they can both access the @code{balance} variable
  1095. binding inside that environment. The value of this variable binding
  1096. persists between calls to either procedure.
  1097. Note that the captured @code{balance} variable binding is private to
  1098. these two procedures: it is not directly accessible to any other code.
  1099. It can only be accessed indirectly via @code{get-balance} or
  1100. @code{deposit}, as illustrated by the @code{withdraw} procedure.
  1101. @lisp
  1102. (define get-balance #f)
  1103. (define deposit #f)
  1104. (let ((balance 0))
  1105. (set! get-balance
  1106. (lambda ()
  1107. balance))
  1108. (set! deposit
  1109. (lambda (amount)
  1110. (set! balance (+ balance amount))
  1111. balance)))
  1112. (define (withdraw amount)
  1113. (deposit (- amount)))
  1114. (get-balance)
  1115. @result{}
  1116. 0
  1117. (deposit 50)
  1118. @result{}
  1119. 50
  1120. (withdraw 75)
  1121. @result{}
  1122. -25
  1123. @end lisp
  1124. An important detail here is that the @code{get-balance} and
  1125. @code{deposit} variables must be set up by @code{define}ing them at top
  1126. level and then @code{set!}ing their values inside the @code{let} body.
  1127. Using @code{define} within the @code{let} body would not work: this
  1128. would create variable bindings within the local @code{let} environment
  1129. that would not be accessible at top level.
  1130. @node Callback Closure
  1131. @subsection Example 3: The Callback Closure Problem
  1132. A frequently used programming model for library code is to allow an
  1133. application to register a callback function for the library to call when
  1134. some particular event occurs. It is often useful for the application to
  1135. make several such registrations using the same callback function, for
  1136. example if several similar library events can be handled using the same
  1137. application code, but the need then arises to distinguish the callback
  1138. function calls that are associated with one callback registration from
  1139. those that are associated with different callback registrations.
  1140. In languages without the ability to create functions dynamically, this
  1141. problem is usually solved by passing a @code{user_data} parameter on the
  1142. registration call, and including the value of this parameter as one of
  1143. the parameters on the callback function. Here is an example of
  1144. declarations using this solution in C:
  1145. @example
  1146. typedef void (event_handler_t) (int event_type,
  1147. void *user_data);
  1148. void register_callback (int event_type,
  1149. event_handler_t *handler,
  1150. void *user_data);
  1151. @end example
  1152. In Scheme, closure can be used to achieve the same functionality without
  1153. requiring the library code to store a @code{user-data} for each callback
  1154. registration.
  1155. @lisp
  1156. ;; In the library:
  1157. (define (register-callback event-type handler-proc)
  1158. @dots{})
  1159. ;; In the application:
  1160. (define (make-handler event-type user-data)
  1161. (lambda ()
  1162. @dots{}
  1163. <code referencing event-type and user-data>
  1164. @dots{}))
  1165. (register-callback event-type
  1166. (make-handler event-type @dots{}))
  1167. @end lisp
  1168. As far as the library is concerned, @code{handler-proc} is a procedure
  1169. with no arguments, and all the library has to do is call it when the
  1170. appropriate event occurs. From the application's point of view, though,
  1171. the handler procedure has used closure to capture an environment that
  1172. includes all the context that the handler code needs ---
  1173. @code{event-type} and @code{user-data} --- to handle the event
  1174. correctly.
  1175. @node OO Closure
  1176. @subsection Example 4: Object Orientation
  1177. Closure is the capture of an environment, containing persistent variable
  1178. bindings, within the definition of a procedure or a set of related
  1179. procedures. This is rather similar to the idea in some object oriented
  1180. languages of encapsulating a set of related data variables inside an
  1181. ``object'', together with a set of ``methods'' that operate on the
  1182. encapsulated data. The following example shows how closure can be used
  1183. to emulate the ideas of objects, methods and encapsulation in Scheme.
  1184. @lisp
  1185. (define (make-account)
  1186. (let ((balance 0))
  1187. (define (get-balance)
  1188. balance)
  1189. (define (deposit amount)
  1190. (set! balance (+ balance amount))
  1191. balance)
  1192. (define (withdraw amount)
  1193. (deposit (- amount)))
  1194. (lambda args
  1195. (apply
  1196. (case (car args)
  1197. ((get-balance) get-balance)
  1198. ((deposit) deposit)
  1199. ((withdraw) withdraw)
  1200. (else (error "Invalid method!")))
  1201. (cdr args)))))
  1202. @end lisp
  1203. Each call to @code{make-account} creates and returns a new procedure,
  1204. created by the expression in the example code that begins ``(lambda
  1205. args''.
  1206. @lisp
  1207. (define my-account (make-account))
  1208. my-account
  1209. @result{}
  1210. #<procedure args>
  1211. @end lisp
  1212. This procedure acts as an account object with methods
  1213. @code{get-balance}, @code{deposit} and @code{withdraw}. To apply one of
  1214. the methods to the account, you call the procedure with a symbol
  1215. indicating the required method as the first parameter, followed by any
  1216. other parameters that are required by that method.
  1217. @lisp
  1218. (my-account 'get-balance)
  1219. @result{}
  1220. 0
  1221. (my-account 'withdraw 5)
  1222. @result{}
  1223. -5
  1224. (my-account 'deposit 396)
  1225. @result{}
  1226. 391
  1227. (my-account 'get-balance)
  1228. @result{}
  1229. 391
  1230. @end lisp
  1231. Note how, in this example, both the current balance and the helper
  1232. procedures @code{get-balance}, @code{deposit} and @code{withdraw}, used
  1233. to implement the guts of the account object's methods, are all stored in
  1234. variable bindings within the private local environment captured by the
  1235. @code{lambda} expression that creates the account object procedure.
  1236. @c Local Variables:
  1237. @c TeX-master: "guile.texi"
  1238. @c End: