scheme-ideas.texi 55 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589
  1. @c -*-texinfo-*-
  2. @c This is part of the GNU Guile Reference Manual.
  3. @c Copyright (C) 1996, 1997, 2000, 2001, 2002, 2003, 2004, 2005, 2012
  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{expression} @dots{})
  277. @end lisp
  278. @noindent
  279. is a newly created procedure that takes two arguments:
  280. @code{name} and @code{address}. The behaviour of the
  281. new procedure is determined by the sequence of @var{expression}s in the
  282. @dfn{body} of the procedure definition. (Typically, these
  283. @var{expression}s would use the arguments in some way, or else there
  284. wouldn't be any point in giving them to the procedure.) When invoked,
  285. the new procedure returns a value that is the value of the last
  286. @var{expression} in the procedure body.
  287. To make things more concrete, let's suppose that the two arguments are
  288. both strings, and that the purpose of this procedure is to form a
  289. combined string that includes these arguments. Then the full lambda
  290. expression might look like this:
  291. @lisp
  292. (lambda (name address)
  293. (string-append "Name=" name ":Address=" address))
  294. @end lisp
  295. We noted in the previous subsection that the @var{procedure} part of a
  296. procedure invocation expression can be any Scheme expression whose value
  297. is a procedure. But that's exactly what a lambda expression is! So we
  298. can use a lambda expression directly in a procedure invocation, like
  299. this:
  300. @lisp
  301. ((lambda (name address)
  302. (string-append "Name=" name ":Address=" address))
  303. "FSF"
  304. "Cambridge")
  305. @end lisp
  306. @noindent
  307. This is a valid procedure invocation expression, and its result is the
  308. string:
  309. @lisp
  310. "Name=FSF:Address=Cambridge"
  311. @end lisp
  312. It is more common, though, to store the procedure value in a variable ---
  313. @lisp
  314. (define make-combined-string
  315. (lambda (name address)
  316. (string-append "Name=" name ":Address=" address)))
  317. @end lisp
  318. @noindent
  319. --- and then to use the variable name in the procedure invocation:
  320. @lisp
  321. (make-combined-string "FSF" "Cambridge")
  322. @end lisp
  323. @noindent
  324. Which has exactly the same result.
  325. It's important to note that procedures created using @code{lambda} have
  326. exactly the same status as the standard built in Scheme procedures, and
  327. can be invoked, passed around, and stored in variables in exactly the
  328. same ways.
  329. @node Lambda Alternatives
  330. @subsection Lambda Alternatives
  331. Since it is so common in Scheme programs to want to create a procedure
  332. and then store it in a variable, there is an alternative form of the
  333. @code{define} syntax that allows you to do just that.
  334. A @code{define} expression of the form
  335. @lisp
  336. (define (@var{name} [@var{arg1} [@var{arg2} @dots{}]])
  337. @var{expression} @dots{})
  338. @end lisp
  339. @noindent
  340. is exactly equivalent to the longer form
  341. @lisp
  342. (define @var{name}
  343. (lambda ([@var{arg1} [@var{arg2} @dots{}]])
  344. @var{expression} @dots{}))
  345. @end lisp
  346. So, for example, the definition of @code{make-combined-string} in the
  347. previous subsection could equally be written:
  348. @lisp
  349. (define (make-combined-string name address)
  350. (string-append "Name=" name ":Address=" address))
  351. @end lisp
  352. This kind of procedure definition creates a procedure that requires
  353. exactly the expected number of arguments. There are two further forms
  354. of the @code{lambda} expression, which create a procedure that can
  355. accept a variable number of arguments:
  356. @lisp
  357. (lambda (@var{arg1} @dots{} . @var{args}) @var{expression} @dots{})
  358. (lambda @var{args} @var{expression} @dots{})
  359. @end lisp
  360. @noindent
  361. The corresponding forms of the alternative @code{define} syntax are:
  362. @lisp
  363. (define (@var{name} @var{arg1} @dots{} . @var{args}) @var{expression} @dots{})
  364. (define (@var{name} . @var{args}) @var{expression} @dots{})
  365. @end lisp
  366. @noindent
  367. For details on how these forms work, see @xref{Lambda}.
  368. (It could be argued that the alternative @code{define} forms are rather
  369. confusing, especially for newcomers to the Scheme language, as they hide
  370. both the role of @code{lambda} and the fact that procedures are values
  371. that are stored in variables in the some way as any other kind of value.
  372. On the other hand, they are very convenient, and they are also a good
  373. example of another of Scheme's powerful features: the ability to specify
  374. arbitrary syntactic transformations at run time, which can be applied to
  375. subsequently read input.)
  376. @node About Expressions
  377. @section Expressions and Evaluation
  378. So far, we have met expressions that @emph{do} things, such as the
  379. @code{define} expressions that create and initialize new variables, and
  380. we have also talked about expressions that have @emph{values}, for
  381. example the value of the procedure invocation expression:
  382. @lisp
  383. (string-append "/home" "/" "andrew")
  384. @end lisp
  385. @noindent
  386. but we haven't yet been precise about what causes an expression like
  387. this procedure invocation to be reduced to its ``value'', or how the
  388. processing of such expressions relates to the execution of a Scheme
  389. program as a whole.
  390. This section clarifies what we mean by an expression's value, by
  391. introducing the idea of @dfn{evaluation}. It discusses the side effects
  392. that evaluation can have, explains how each of the various types of
  393. Scheme expression is evaluated, and describes the behaviour and use of
  394. the Guile REPL as a mechanism for exploring evaluation. The section
  395. concludes with a very brief summary of Scheme's common syntactic
  396. expressions.
  397. @menu
  398. * Evaluating:: How a Scheme program is executed.
  399. * Tail Calls:: Space-safe recursion.
  400. * The REPL:: Interacting with the Guile interpreter.
  401. * Syntax Summary:: Common syntactic expressions -- in brief.
  402. @end menu
  403. @node Evaluating
  404. @subsection Evaluating Expressions and Executing Programs
  405. In Scheme, the process of executing an expression is known as
  406. @dfn{evaluation}. Evaluation has two kinds of result:
  407. @itemize @bullet
  408. @item
  409. the @dfn{value} of the evaluated expression
  410. @item
  411. the @dfn{side effects} of the evaluation, which consist of any effects of
  412. evaluating the expression that are not represented by the value.
  413. @end itemize
  414. Of the expressions that we have met so far, @code{define} and
  415. @code{set!} expressions have side effects --- the creation or
  416. modification of a variable --- but no value; @code{lambda} expressions
  417. have values --- the newly constructed procedures --- but no side
  418. effects; and procedure invocation expressions, in general, have either
  419. values, or side effects, or both.
  420. It is tempting to try to define more intuitively what we mean by
  421. ``value'' and ``side effects'', and what the difference between them is.
  422. In general, though, this is extremely difficult. It is also
  423. unnecessary; instead, we can quite happily define the behaviour of a
  424. Scheme program by specifying how Scheme executes a program as a whole,
  425. and then by describing the value and side effects of evaluation for each
  426. type of expression individually.
  427. @noindent
  428. So, some@footnote{These definitions are approximate. For the whole
  429. and detailed truth, see @ref{Formal syntax and semantics,R5RS
  430. syntax,,r5rs,The Revised(5) Report on the Algorithmic Language
  431. Scheme}.} definitions@dots{}
  432. @itemize @bullet
  433. @item
  434. A Scheme program consists of a sequence of expressions.
  435. @item
  436. A Scheme interpreter executes the program by evaluating these
  437. expressions in order, one by one.
  438. @item
  439. An expression can be
  440. @itemize @bullet
  441. @item
  442. a piece of literal data, such as a number @code{2.3} or a string
  443. @code{"Hello world!"}
  444. @item
  445. a variable name
  446. @item
  447. a procedure invocation expression
  448. @item
  449. one of Scheme's special syntactic expressions.
  450. @end itemize
  451. @end itemize
  452. @noindent
  453. The following subsections describe how each of these types of expression
  454. is evaluated.
  455. @menu
  456. * Eval Literal:: Evaluating literal data.
  457. * Eval Variable:: Evaluating variable references.
  458. * Eval Procedure:: Evaluating procedure invocation expressions.
  459. * Eval Special:: Evaluating special syntactic expressions.
  460. @end menu
  461. @node Eval Literal
  462. @subsubsection Evaluating Literal Data
  463. When a literal data expression is evaluated, the value of the expression
  464. is simply the value that the expression describes. The evaluation of a
  465. literal data expression has no side effects.
  466. @noindent
  467. So, for example,
  468. @itemize @bullet
  469. @item
  470. the value of the expression @code{"abc"} is the string value
  471. @code{"abc"}
  472. @item
  473. the value of the expression @code{3+4i} is the complex number 3 + 4i
  474. @item
  475. the value of the expression @code{#(1 2 3)} is a three-element vector
  476. containing the numeric values 1, 2 and 3.
  477. @end itemize
  478. For any data type which can be expressed literally like this, the syntax
  479. of the literal data expression for that data type --- in other words,
  480. what you need to write in your code to indicate a literal value of that
  481. type --- is known as the data type's @dfn{read syntax}. This manual
  482. specifies the read syntax for each such data type in the section that
  483. describes that data type.
  484. Some data types do not have a read syntax. Procedures, for example,
  485. cannot be expressed as literal data; they must be created using a
  486. @code{lambda} expression (@pxref{Creating a Procedure}) or implicitly
  487. using the shorthand form of @code{define} (@pxref{Lambda Alternatives}).
  488. @node Eval Variable
  489. @subsubsection Evaluating a Variable Reference
  490. When an expression that consists simply of a variable name is evaluated,
  491. the value of the expression is the value of the named variable. The
  492. evaluation of a variable reference expression has no side effects.
  493. So, after
  494. @lisp
  495. (define key "Paul Evans")
  496. @end lisp
  497. @noindent
  498. the value of the expression @code{key} is the string value @code{"Paul
  499. Evans"}. If @var{key} is then modified by
  500. @lisp
  501. (set! key 3.74)
  502. @end lisp
  503. @noindent
  504. the value of the expression @code{key} is the numeric value 3.74.
  505. If there is no variable with the specified name, evaluation of the
  506. variable reference expression signals an error.
  507. @node Eval Procedure
  508. @subsubsection Evaluating a Procedure Invocation Expression
  509. This is where evaluation starts getting interesting! As already noted,
  510. a procedure invocation expression has the form
  511. @lisp
  512. (@var{procedure} [@var{arg1} [@var{arg2} @dots{}]])
  513. @end lisp
  514. @noindent
  515. where @var{procedure} must be an expression whose value, when evaluated,
  516. is a procedure.
  517. The evaluation of a procedure invocation expression like this proceeds
  518. by
  519. @itemize @bullet
  520. @item
  521. evaluating individually the expressions @var{procedure}, @var{arg1},
  522. @var{arg2}, and so on
  523. @item
  524. calling the procedure that is the value of the @var{procedure}
  525. expression with the list of values obtained from the evaluations of
  526. @var{arg1}, @var{arg2} etc. as its parameters.
  527. @end itemize
  528. For a procedure defined in Scheme, ``calling the procedure with the list
  529. of values as its parameters'' means binding the values to the
  530. procedure's formal parameters and then evaluating the sequence of
  531. expressions that make up the body of the procedure definition. The
  532. value of the procedure invocation expression is the value of the last
  533. evaluated expression in the procedure body. The side effects of calling
  534. the procedure are the combination of the side effects of the sequence of
  535. evaluations of expressions in the procedure body.
  536. For a built-in procedure, the value and side-effects of calling the
  537. procedure are best described by that procedure's documentation.
  538. Note that the complete side effects of evaluating a procedure invocation
  539. expression consist not only of the side effects of the procedure call,
  540. but also of any side effects of the preceding evaluation of the
  541. expressions @var{procedure}, @var{arg1}, @var{arg2}, and so on.
  542. To illustrate this, let's look again at the procedure invocation
  543. expression:
  544. @lisp
  545. (string-length (string-append "/home" "/" "andrew"))
  546. @end lisp
  547. In the outermost expression, @var{procedure} is @code{string-length} and
  548. @var{arg1} is @code{(string-append "/home" "/" "andrew")}.
  549. @itemize @bullet
  550. @item
  551. Evaluation of @code{string-length}, which is a variable, gives a
  552. procedure value that implements the expected behaviour for
  553. ``string-length''.
  554. @item
  555. Evaluation of @code{(string-append "/home" "/" "andrew")}, which is
  556. another procedure invocation expression, means evaluating each of
  557. @itemize @bullet
  558. @item
  559. @code{string-append}, which gives a procedure value that implements the
  560. expected behaviour for ``string-append''
  561. @item
  562. @code{"/home"}, which gives the string value @code{"/home"}
  563. @item
  564. @code{"/"}, which gives the string value @code{"/"}
  565. @item
  566. @code{"andrew"}, which gives the string value @code{"andrew"}
  567. @end itemize
  568. and then invoking the procedure value with this list of string values as
  569. its arguments. The resulting value is a single string value that is the
  570. concatenation of all the arguments, namely @code{"/home/andrew"}.
  571. @end itemize
  572. In the evaluation of the outermost expression, the interpreter can now
  573. invoke the procedure value obtained from @var{procedure} with the value
  574. obtained from @var{arg1} as its arguments. The resulting value is a
  575. numeric value that is the length of the argument string, which is 12.
  576. @node Eval Special
  577. @subsubsection Evaluating Special Syntactic Expressions
  578. When a procedure invocation expression is evaluated, the procedure and
  579. @emph{all} the argument expressions must be evaluated before the
  580. procedure can be invoked. Special syntactic expressions are special
  581. because they are able to manipulate their arguments in an unevaluated
  582. form, and can choose whether to evaluate any or all of the argument
  583. expressions.
  584. Why is this needed? Consider a program fragment that asks the user
  585. whether or not to delete a file, and then deletes the file if the user
  586. answers yes.
  587. @lisp
  588. (if (string=? (read-answer "Should I delete this file?")
  589. "yes")
  590. (delete-file file))
  591. @end lisp
  592. If the outermost @code{(if @dots{})} expression here was a procedure
  593. invocation expression, the expression @code{(delete-file file)}, whose
  594. side effect is to actually delete a file, would already have been
  595. evaluated before the @code{if} procedure even got invoked! Clearly this
  596. is no use --- the whole point of an @code{if} expression is that the
  597. @dfn{consequent} expression is only evaluated if the condition of the
  598. @code{if} expression is ``true''.
  599. Therefore @code{if} must be special syntax, not a procedure. Other
  600. special syntaxes that we have already met are @code{define}, @code{set!}
  601. and @code{lambda}. @code{define} and @code{set!} are syntax because
  602. they need to know the variable @emph{name} that is given as the first
  603. argument in a @code{define} or @code{set!} expression, not that
  604. variable's value. @code{lambda} is syntax because it does not
  605. immediately evaluate the expressions that define the procedure body;
  606. instead it creates a procedure object that incorporates these
  607. expressions so that they can be evaluated in the future, when that
  608. procedure is invoked.
  609. The rules for evaluating each special syntactic expression are specified
  610. individually for each special syntax. For a summary of standard special
  611. syntax, see @xref{Syntax Summary}.
  612. @node Tail Calls
  613. @subsection Tail calls
  614. @cindex tail calls
  615. @cindex recursion
  616. Scheme is ``properly tail recursive'', meaning that tail calls or
  617. recursions from certain contexts do not consume stack space or other
  618. resources and can therefore be used on arbitrarily large data or for
  619. an arbitrarily long calculation. Consider for example,
  620. @example
  621. (define (foo n)
  622. (display n)
  623. (newline)
  624. (foo (1+ n)))
  625. (foo 1)
  626. @print{}
  627. 1
  628. 2
  629. 3
  630. @dots{}
  631. @end example
  632. @code{foo} prints numbers infinitely, starting from the given @var{n}.
  633. It's implemented by printing @var{n} then recursing to itself to print
  634. @math{@var{n}+1} and so on. This recursion is a tail call, it's the
  635. last thing done, and in Scheme such tail calls can be made without
  636. limit.
  637. Or consider a case where a value is returned, a version of the SRFI-1
  638. @code{last} function (@pxref{SRFI-1 Selectors}) returning the last
  639. element of a list,
  640. @example
  641. (define (my-last lst)
  642. (if (null? (cdr lst))
  643. (car lst)
  644. (my-last (cdr lst))))
  645. (my-last '(1 2 3)) @result{} 3
  646. @end example
  647. If the list has more than one element, @code{my-last} applies itself
  648. to the @code{cdr}. This recursion is a tail call, there's no code
  649. after it, and the return value is the return value from that call. In
  650. Scheme this can be used on an arbitrarily long list argument.
  651. @sp 1
  652. A proper tail call is only available from certain contexts, namely the
  653. following special form positions,
  654. @itemize @bullet
  655. @item
  656. @code{and} --- last expression
  657. @item
  658. @code{begin} --- last expression
  659. @item
  660. @code{case} --- last expression in each clause
  661. @item
  662. @code{cond} --- last expression in each clause, and the call to a
  663. @code{=>} procedure is a tail call
  664. @item
  665. @code{do} --- last result expression
  666. @item
  667. @code{if} --- ``true'' and ``false'' leg expressions
  668. @item
  669. @code{lambda} --- last expression in body
  670. @item
  671. @code{let}, @code{let*}, @code{letrec}, @code{let-syntax},
  672. @code{letrec-syntax} --- last expression in body
  673. @item
  674. @code{or} --- last expression
  675. @end itemize
  676. @noindent
  677. The following core functions make tail calls,
  678. @itemize @bullet
  679. @item
  680. @code{apply} --- tail call to given procedure
  681. @item
  682. @code{call-with-current-continuation} --- tail call to the procedure
  683. receiving the new continuation
  684. @item
  685. @code{call-with-values} --- tail call to the values-receiving
  686. procedure
  687. @item
  688. @code{eval} --- tail call to evaluate the form
  689. @item
  690. @code{string-any}, @code{string-every} --- tail call to predicate on
  691. the last character (if that point is reached)
  692. @end itemize
  693. @sp 1
  694. The above are just core functions and special forms. Tail calls in
  695. other modules are described with the relevant documentation, for
  696. example SRFI-1 @code{any} and @code{every} (@pxref{SRFI-1 Searching}).
  697. It will be noted there are a lot of places which could potentially be
  698. tail calls, for instance the last call in a @code{for-each}, but only
  699. those explicitly described are guaranteed.
  700. @node The REPL
  701. @subsection Using the Guile REPL
  702. If you start Guile without specifying a particular program for it to
  703. execute, Guile enters its standard Read Evaluate Print Loop --- or
  704. @dfn{REPL} for short. In this mode, Guile repeatedly reads in the next
  705. Scheme expression that the user types, evaluates it, and prints the
  706. resulting value.
  707. The REPL is a useful mechanism for exploring the evaluation behaviour
  708. described in the previous subsection. If you type @code{string-append},
  709. for example, the REPL replies @code{#<primitive-procedure
  710. string-append>}, illustrating the relationship between the variable
  711. @code{string-append} and the procedure value stored in that variable.
  712. In this manual, the notation @result{} is used to mean ``evaluates
  713. to''. Wherever you see an example of the form
  714. @lisp
  715. @var{expression}
  716. @result{}
  717. @var{result}
  718. @end lisp
  719. @noindent
  720. feel free to try it out yourself by typing @var{expression} into the
  721. REPL and checking that it gives the expected @var{result}.
  722. @node Syntax Summary
  723. @subsection Summary of Common Syntax
  724. This subsection lists the most commonly used Scheme syntactic
  725. expressions, simply so that you will recognize common special syntax
  726. when you see it. For a full description of each of these syntaxes,
  727. follow the appropriate reference.
  728. @code{lambda} (@pxref{Lambda}) is used to construct procedure objects.
  729. @code{define} (@pxref{Top Level}) is used to create a new variable and
  730. set its initial value.
  731. @code{set!} (@pxref{Top Level}) is used to modify an existing variable's
  732. value.
  733. @code{let}, @code{let*} and @code{letrec} (@pxref{Local Bindings})
  734. create an inner lexical environment for the evaluation of a sequence of
  735. expressions, in which a specified set of local variables is bound to the
  736. values of a corresponding set of expressions. For an introduction to
  737. environments, see @xref{About Closure}.
  738. @code{begin} (@pxref{begin}) executes a sequence of expressions in order
  739. and returns the value of the last expression. Note that this is not the
  740. same as a procedure which returns its last argument, because the
  741. evaluation of a procedure invocation expression does not guarantee to
  742. evaluate the arguments in order.
  743. @code{if} and @code{cond} (@pxref{Conditionals}) provide conditional
  744. evaluation of argument expressions depending on whether one or more
  745. conditions evaluate to ``true'' or ``false''.
  746. @code{case} (@pxref{Conditionals}) provides conditional evaluation of
  747. argument expressions depending on whether a variable has one of a
  748. specified group of values.
  749. @code{and} (@pxref{and or}) executes a sequence of expressions in order
  750. until either there are no expressions left, or one of them evaluates to
  751. ``false''.
  752. @code{or} (@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. ``true''.
  755. @node About Closure
  756. @section The Concept of Closure
  757. @cindex closure
  758. The concept of @dfn{closure} is the idea that a lambda expression
  759. ``captures'' the variable bindings that are in lexical scope at the
  760. point where the lambda expression occurs. The procedure created by the
  761. lambda expression can refer to and mutate the captured bindings, and the
  762. values of those bindings persist between procedure calls.
  763. This section explains and explores the various parts of this idea in
  764. more detail.
  765. @menu
  766. * About Environments:: Names, locations, values and environments.
  767. * Local Variables:: Local variables and local environments.
  768. * Chaining:: Environment chaining.
  769. * Lexical Scope:: The meaning of lexical scoping.
  770. * Closure:: Explaining the concept of closure.
  771. * Serial Number:: Example 1: a serial number generator.
  772. * Shared Variable:: Example 2: a shared persistent variable.
  773. * Callback Closure:: Example 3: the callback closure problem.
  774. * OO Closure:: Example 4: object orientation.
  775. @end menu
  776. @node About Environments
  777. @subsection Names, Locations, Values and Environments
  778. @cindex location
  779. @cindex environment
  780. @cindex vcell
  781. @cindex top level environment
  782. @cindex environment, top level
  783. We said earlier that a variable name in a Scheme program is associated
  784. with a location in which any kind of Scheme value may be stored.
  785. (Incidentally, the term ``vcell'' is often used in Lisp and Scheme
  786. circles as an alternative to ``location''.) Thus part of what we mean
  787. when we talk about ``creating a variable'' is in fact establishing an
  788. association between a name, or identifier, that is used by the Scheme
  789. program code, and the variable location to which that name refers.
  790. Although the value that is stored in that location may change, the
  791. location to which a given name refers is always the same.
  792. We can illustrate this by breaking down the operation of the
  793. @code{define} syntax into three parts: @code{define}
  794. @itemize @bullet
  795. @item
  796. creates a new location
  797. @item
  798. establishes an association between that location and the name specified
  799. as the first argument of the @code{define} expression
  800. @item
  801. stores in that location the value obtained by evaluating the second
  802. argument of the @code{define} expression.
  803. @end itemize
  804. A collection of associations between names and locations is called an
  805. @dfn{environment}. When you create a top level variable in a program
  806. using @code{define}, the name-location association for that variable is
  807. added to the ``top level'' environment. The ``top level'' environment
  808. also includes name-location associations for all the procedures that are
  809. supplied by standard Scheme.
  810. It is also possible to create environments other than the top level one,
  811. and to create variable bindings, or name-location associations, in those
  812. environments. This ability is a key ingredient in the concept of
  813. closure; the next subsection shows how it is done.
  814. @node Local Variables
  815. @subsection Local Variables and Environments
  816. @cindex local variable
  817. @cindex variable, local
  818. @cindex local environment
  819. @cindex environment, local
  820. We have seen how to create top level variables using the @code{define}
  821. syntax (@pxref{Definition}). It is often useful to create variables
  822. that are more limited in their scope, typically as part of a procedure
  823. body. In Scheme, this is done using the @code{let} syntax, or one of
  824. its modified forms @code{let*} and @code{letrec}. These syntaxes are
  825. described in full later in the manual (@pxref{Local Bindings}). Here
  826. our purpose is to illustrate their use just enough that we can see how
  827. local variables work.
  828. For example, the following code uses a local variable @code{s} to
  829. simplify the computation of the area of a triangle given the lengths of
  830. its three sides.
  831. @lisp
  832. (define a 5.3)
  833. (define b 4.7)
  834. (define c 2.8)
  835. (define area
  836. (let ((s (/ (+ a b c) 2)))
  837. (sqrt (* s (- s a) (- s b) (- s c)))))
  838. @end lisp
  839. The effect of the @code{let} expression is to create a new environment
  840. and, within this environment, an association between the name @code{s}
  841. and a new location whose initial value is obtained by evaluating
  842. @code{(/ (+ a b c) 2)}. The expressions in the body of the @code{let},
  843. namely @code{(sqrt (* s (- s a) (- s b) (- s c)))}, are then evaluated
  844. in the context of the new environment, and the value of the last
  845. expression evaluated becomes the value of the whole @code{let}
  846. expression, and therefore the value of the variable @code{area}.
  847. @node Chaining
  848. @subsection Environment Chaining
  849. @cindex shadowing an imported variable binding
  850. @cindex chaining environments
  851. In the example of the previous subsection, we glossed over an important
  852. point. The body of the @code{let} expression in that example refers not
  853. only to the local variable @code{s}, but also to the top level variables
  854. @code{a}, @code{b}, @code{c} and @code{sqrt}. (@code{sqrt} is the
  855. standard Scheme procedure for calculating a square root.) If the body
  856. of the @code{let} expression is evaluated in the context of the
  857. @emph{local} @code{let} environment, how does the evaluation get at the
  858. values of these top level variables?
  859. The answer is that the local environment created by a @code{let}
  860. expression automatically has a reference to its containing environment
  861. --- in this case the top level environment --- and that the Scheme
  862. interpreter automatically looks for a variable binding in the containing
  863. environment if it doesn't find one in the local environment. More
  864. generally, every environment except for the top level one has a
  865. reference to its containing environment, and the interpreter keeps
  866. searching back up the chain of environments --- from most local to top
  867. level --- until it either finds a variable binding for the required
  868. identifier or exhausts the chain.
  869. This description also determines what happens when there is more than
  870. one variable binding with the same name. Suppose, continuing the
  871. example of the previous subsection, that there was also a pre-existing
  872. top level variable @code{s} created by the expression:
  873. @lisp
  874. (define s "Some beans, my lord!")
  875. @end lisp
  876. Then both the top level environment and the local @code{let} environment
  877. would contain bindings for the name @code{s}. When evaluating code
  878. within the @code{let} body, the interpreter looks first in the local
  879. @code{let} environment, and so finds the binding for @code{s} created by
  880. the @code{let} syntax. Even though this environment has a reference to
  881. the top level environment, which also has a binding for @code{s}, the
  882. interpreter doesn't get as far as looking there. When evaluating code
  883. outside the @code{let} body, the interpreter looks up variable names in
  884. the top level environment, so the name @code{s} refers to the top level
  885. variable.
  886. Within the @code{let} body, the binding for @code{s} in the local
  887. environment is said to @dfn{shadow} the binding for @code{s} in the top
  888. level environment.
  889. @node Lexical Scope
  890. @subsection Lexical Scope
  891. The rules that we have just been describing are the details of how
  892. Scheme implements ``lexical scoping''. This subsection takes a brief
  893. diversion to explain what lexical scope means in general and to present
  894. an example of non-lexical scoping.
  895. ``Lexical scope'' in general is the idea that
  896. @itemize @bullet
  897. @item
  898. an identifier at a particular place in a program always refers to the
  899. same variable location --- where ``always'' means ``every time that the
  900. containing expression is executed'', and that
  901. @item
  902. the variable location to which it refers can be determined by static
  903. examination of the source code context in which that identifier appears,
  904. without having to consider the flow of execution through the program as
  905. a whole.
  906. @end itemize
  907. In practice, lexical scoping is the norm for most programming languages,
  908. and probably corresponds to what you would intuitively consider to be
  909. ``normal''. You may even be wondering how the situation could possibly
  910. --- and usefully --- be otherwise. To demonstrate that another kind of
  911. scoping is possible, therefore, and to compare it against lexical
  912. scoping, the following subsection presents an example of non-lexical
  913. scoping and examines in detail how its behavior differs from the
  914. corresponding lexically scoped code.
  915. @menu
  916. * Scoping Example:: An example of non-lexical scoping.
  917. @end menu
  918. @node Scoping Example
  919. @subsubsection An Example of Non-Lexical Scoping
  920. To demonstrate that non-lexical scoping does exist and can be useful, we
  921. present the following example from Emacs Lisp, which is a ``dynamically
  922. scoped'' language.
  923. @lisp
  924. (defvar currency-abbreviation "USD")
  925. (defun currency-string (units hundredths)
  926. (concat currency-abbreviation
  927. (number-to-string units)
  928. "."
  929. (number-to-string hundredths)))
  930. (defun french-currency-string (units hundredths)
  931. (let ((currency-abbreviation "FRF"))
  932. (currency-string units hundredths)))
  933. @end lisp
  934. The question to focus on here is: what does the identifier
  935. @code{currency-abbreviation} refer to in the @code{currency-string}
  936. function? The answer, in Emacs Lisp, is that all variable bindings go
  937. onto a single stack, and that @code{currency-abbreviation} refers to the
  938. topmost binding from that stack which has the name
  939. ``currency-abbreviation''. The binding that is created by the
  940. @code{defvar} form, to the value @code{"USD"}, is only relevant if none
  941. of the code that calls @code{currency-string} rebinds the name
  942. ``currency-abbreviation'' in the meanwhile.
  943. The second function @code{french-currency-string} works precisely by
  944. taking advantage of this behaviour. It creates a new binding for the
  945. name ``currency-abbreviation'' which overrides the one established by
  946. the @code{defvar} form.
  947. @lisp
  948. ;; Note! This is Emacs Lisp evaluation, not Scheme!
  949. (french-currency-string 33 44)
  950. @result{}
  951. "FRF33.44"
  952. @end lisp
  953. Now let's look at the corresponding, @emph{lexically scoped} Scheme
  954. code:
  955. @lisp
  956. (define currency-abbreviation "USD")
  957. (define (currency-string units hundredths)
  958. (string-append currency-abbreviation
  959. (number->string units)
  960. "."
  961. (number->string hundredths)))
  962. (define (french-currency-string units hundredths)
  963. (let ((currency-abbreviation "FRF"))
  964. (currency-string units hundredths)))
  965. @end lisp
  966. According to the rules of lexical scoping, the
  967. @code{currency-abbreviation} in @code{currency-string} refers to the
  968. variable location in the innermost environment at that point in the code
  969. which has a binding for @code{currency-abbreviation}, which is the
  970. variable location in the top level environment created by the preceding
  971. @code{(define currency-abbreviation @dots{})} expression.
  972. In Scheme, therefore, the @code{french-currency-string} procedure does
  973. not work as intended. The variable binding that it creates for
  974. ``currency-abbreviation'' is purely local to the code that forms the
  975. body of the @code{let} expression. Since this code doesn't directly use
  976. the name ``currency-abbreviation'' at all, the binding is pointless.
  977. @lisp
  978. (french-currency-string 33 44)
  979. @result{}
  980. "USD33.44"
  981. @end lisp
  982. This begs the question of how the Emacs Lisp behaviour can be
  983. implemented in Scheme. In general, this is a design question whose
  984. answer depends upon the problem that is being addressed. In this case,
  985. the best answer may be that @code{currency-string} should be
  986. redesigned so that it can take an optional third argument. This third
  987. argument, if supplied, is interpreted as a currency abbreviation that
  988. overrides the default.
  989. It is possible to change @code{french-currency-string} so that it mostly
  990. works without changing @code{currency-string}, but the fix is inelegant,
  991. and susceptible to interrupts that could leave the
  992. @code{currency-abbreviation} variable in the wrong state:
  993. @lisp
  994. (define (french-currency-string units hundredths)
  995. (set! currency-abbreviation "FRF")
  996. (let ((result (currency-string units hundredths)))
  997. (set! currency-abbreviation "USD")
  998. result))
  999. @end lisp
  1000. The key point here is that the code does not create any local binding
  1001. for the identifier @code{currency-abbreviation}, so all occurrences of
  1002. this identifier refer to the top level variable.
  1003. @node Closure
  1004. @subsection Closure
  1005. Consider a @code{let} expression that doesn't contain any
  1006. @code{lambda}s:
  1007. @lisp
  1008. (let ((s (/ (+ a b c) 2)))
  1009. (sqrt (* s (- s a) (- s b) (- s c))))
  1010. @end lisp
  1011. @noindent
  1012. When the Scheme interpreter evaluates this, it
  1013. @itemize @bullet
  1014. @item
  1015. creates a new environment with a reference to the environment that was
  1016. current when it encountered the @code{let}
  1017. @item
  1018. creates a variable binding for @code{s} in the new environment, with
  1019. value given by @code{(/ (+ a b c) 2)}
  1020. @item
  1021. evaluates the expression in the body of the @code{let} in the context of
  1022. the new local environment, and remembers the value @code{V}
  1023. @item
  1024. forgets the local environment
  1025. @item
  1026. continues evaluating the expression that contained the @code{let}, using
  1027. the value @code{V} as the value of the @code{let} expression, in the
  1028. context of the containing environment.
  1029. @end itemize
  1030. After the @code{let} expression has been evaluated, the local
  1031. environment that was created is simply forgotten, and there is no longer
  1032. any way to access the binding that was created in this environment. If
  1033. the same code is evaluated again, it will follow the same steps again,
  1034. creating a second new local environment that has no connection with the
  1035. first, and then forgetting this one as well.
  1036. If the @code{let} body contains a @code{lambda} expression, however, the
  1037. local environment is @emph{not} forgotten. Instead, it becomes
  1038. associated with the procedure that is created by the @code{lambda}
  1039. expression, and is reinstated every time that that procedure is called.
  1040. In detail, this works as follows.
  1041. @itemize @bullet
  1042. @item
  1043. When the Scheme interpreter evaluates a @code{lambda} expression, to
  1044. create a procedure object, it stores the current environment as part of
  1045. the procedure definition.
  1046. @item
  1047. Then, whenever that procedure is called, the interpreter reinstates the
  1048. environment that is stored in the procedure definition and evaluates the
  1049. procedure body within the context of that environment.
  1050. @end itemize
  1051. The result is that the procedure body is always evaluated in the context
  1052. of the environment that was current when the procedure was created.
  1053. This is what is meant by @dfn{closure}. The next few subsections
  1054. present examples that explore the usefulness of this concept.
  1055. @node Serial Number
  1056. @subsection Example 1: A Serial Number Generator
  1057. This example uses closure to create a procedure with a variable binding
  1058. that is private to the procedure, like a local variable, but whose value
  1059. persists between procedure calls.
  1060. @lisp
  1061. (define (make-serial-number-generator)
  1062. (let ((current-serial-number 0))
  1063. (lambda ()
  1064. (set! current-serial-number (+ current-serial-number 1))
  1065. current-serial-number)))
  1066. (define entry-sn-generator (make-serial-number-generator))
  1067. (entry-sn-generator)
  1068. @result{}
  1069. 1
  1070. (entry-sn-generator)
  1071. @result{}
  1072. 2
  1073. @end lisp
  1074. When @code{make-serial-number-generator} is called, it creates a local
  1075. environment with a binding for @code{current-serial-number} whose
  1076. initial value is 0, then, within this environment, creates a procedure.
  1077. The local environment is stored within the created procedure object and
  1078. so persists for the lifetime of the created procedure.
  1079. Every time the created procedure is invoked, it increments the value of
  1080. the @code{current-serial-number} binding in the captured environment and
  1081. then returns the current value.
  1082. Note that @code{make-serial-number-generator} can be called again to
  1083. create a second serial number generator that is independent of the
  1084. first. Every new invocation of @code{make-serial-number-generator}
  1085. creates a new local @code{let} environment and returns a new procedure
  1086. object with an association to this environment.
  1087. @node Shared Variable
  1088. @subsection Example 2: A Shared Persistent Variable
  1089. This example uses closure to create two procedures, @code{get-balance}
  1090. and @code{deposit}, that both refer to the same captured local
  1091. environment so that they can both access the @code{balance} variable
  1092. binding inside that environment. The value of this variable binding
  1093. persists between calls to either procedure.
  1094. Note that the captured @code{balance} variable binding is private to
  1095. these two procedures: it is not directly accessible to any other code.
  1096. It can only be accessed indirectly via @code{get-balance} or
  1097. @code{deposit}, as illustrated by the @code{withdraw} procedure.
  1098. @lisp
  1099. (define get-balance #f)
  1100. (define deposit #f)
  1101. (let ((balance 0))
  1102. (set! get-balance
  1103. (lambda ()
  1104. balance))
  1105. (set! deposit
  1106. (lambda (amount)
  1107. (set! balance (+ balance amount))
  1108. balance)))
  1109. (define (withdraw amount)
  1110. (deposit (- amount)))
  1111. (get-balance)
  1112. @result{}
  1113. 0
  1114. (deposit 50)
  1115. @result{}
  1116. 50
  1117. (withdraw 75)
  1118. @result{}
  1119. -25
  1120. @end lisp
  1121. An important detail here is that the @code{get-balance} and
  1122. @code{deposit} variables must be set up by @code{define}ing them at top
  1123. level and then @code{set!}ing their values inside the @code{let} body.
  1124. Using @code{define} within the @code{let} body would not work: this
  1125. would create variable bindings within the local @code{let} environment
  1126. that would not be accessible at top level.
  1127. @node Callback Closure
  1128. @subsection Example 3: The Callback Closure Problem
  1129. A frequently used programming model for library code is to allow an
  1130. application to register a callback function for the library to call when
  1131. some particular event occurs. It is often useful for the application to
  1132. make several such registrations using the same callback function, for
  1133. example if several similar library events can be handled using the same
  1134. application code, but the need then arises to distinguish the callback
  1135. function calls that are associated with one callback registration from
  1136. those that are associated with different callback registrations.
  1137. In languages without the ability to create functions dynamically, this
  1138. problem is usually solved by passing a @code{user_data} parameter on the
  1139. registration call, and including the value of this parameter as one of
  1140. the parameters on the callback function. Here is an example of
  1141. declarations using this solution in C:
  1142. @example
  1143. typedef void (event_handler_t) (int event_type,
  1144. void *user_data);
  1145. void register_callback (int event_type,
  1146. event_handler_t *handler,
  1147. void *user_data);
  1148. @end example
  1149. In Scheme, closure can be used to achieve the same functionality without
  1150. requiring the library code to store a @code{user-data} for each callback
  1151. registration.
  1152. @lisp
  1153. ;; In the library:
  1154. (define (register-callback event-type handler-proc)
  1155. @dots{})
  1156. ;; In the application:
  1157. (define (make-handler event-type user-data)
  1158. (lambda ()
  1159. @dots{}
  1160. <code referencing event-type and user-data>
  1161. @dots{}))
  1162. (register-callback event-type
  1163. (make-handler event-type @dots{}))
  1164. @end lisp
  1165. As far as the library is concerned, @code{handler-proc} is a procedure
  1166. with no arguments, and all the library has to do is call it when the
  1167. appropriate event occurs. From the application's point of view, though,
  1168. the handler procedure has used closure to capture an environment that
  1169. includes all the context that the handler code needs ---
  1170. @code{event-type} and @code{user-data} --- to handle the event
  1171. correctly.
  1172. @node OO Closure
  1173. @subsection Example 4: Object Orientation
  1174. Closure is the capture of an environment, containing persistent variable
  1175. bindings, within the definition of a procedure or a set of related
  1176. procedures. This is rather similar to the idea in some object oriented
  1177. languages of encapsulating a set of related data variables inside an
  1178. ``object'', together with a set of ``methods'' that operate on the
  1179. encapsulated data. The following example shows how closure can be used
  1180. to emulate the ideas of objects, methods and encapsulation in Scheme.
  1181. @lisp
  1182. (define (make-account)
  1183. (let ((balance 0))
  1184. (define (get-balance)
  1185. balance)
  1186. (define (deposit amount)
  1187. (set! balance (+ balance amount))
  1188. balance)
  1189. (define (withdraw amount)
  1190. (deposit (- amount)))
  1191. (lambda args
  1192. (apply
  1193. (case (car args)
  1194. ((get-balance) get-balance)
  1195. ((deposit) deposit)
  1196. ((withdraw) withdraw)
  1197. (else (error "Invalid method!")))
  1198. (cdr args)))))
  1199. @end lisp
  1200. Each call to @code{make-account} creates and returns a new procedure,
  1201. created by the expression in the example code that begins ``(lambda
  1202. args''.
  1203. @lisp
  1204. (define my-account (make-account))
  1205. my-account
  1206. @result{}
  1207. #<procedure args>
  1208. @end lisp
  1209. This procedure acts as an account object with methods
  1210. @code{get-balance}, @code{deposit} and @code{withdraw}. To apply one of
  1211. the methods to the account, you call the procedure with a symbol
  1212. indicating the required method as the first parameter, followed by any
  1213. other parameters that are required by that method.
  1214. @lisp
  1215. (my-account 'get-balance)
  1216. @result{}
  1217. 0
  1218. (my-account 'withdraw 5)
  1219. @result{}
  1220. -5
  1221. (my-account 'deposit 396)
  1222. @result{}
  1223. 391
  1224. (my-account 'get-balance)
  1225. @result{}
  1226. 391
  1227. @end lisp
  1228. Note how, in this example, both the current balance and the helper
  1229. procedures @code{get-balance}, @code{deposit} and @code{withdraw}, used
  1230. to implement the guts of the account object's methods, are all stored in
  1231. variable bindings within the private local environment captured by the
  1232. @code{lambda} expression that creates the account object procedure.
  1233. @c Local Variables:
  1234. @c TeX-master: "guile.texi"
  1235. @c End: