Functional Problem Solving (CSC 151 2013F) : Readings
Primary: [Front Door] [Schedule] - [Academic Honesty] [Disabilities] [Email] [FAQ] [IRC] [Teaching & Learning] [Grading]
Current: [Assignment] [EBoard] [Lab] [Outline] [Partners] [Reading]
Sections: [Assignments] [EBoards] [Examples] [Handouts] [Labs] [Outlines] [Partners] [Readings]
Reference: [Setup] - [Functions A-Z] [Functions By Topic] - [Racket] [Scheme Report (R5RS)] [R6RS] [TSPL4]
Related Courses: [Davis (2013F)] [Rebelsky (2010F)] [Weinman (2012F)]
Misc: [SamR] [Glimmer Labs] [CS@Grinnell] [Grinnell] [Issue Tracker (Course)]
Summary: In this reading, we consider one of Scheme's central kinds of values, symbols.
While your initial exercises in Scheme have been numeric, Scheme is not limited to numerical computation, but can also operate on pure symbols.
Scheme's ancestor, Lisp, was originally developed to aid in experiments in artificial intelligence. At the time, a leading theory suggested that intelligence emphasizes symbolic manipulation. Hence, it is sensible that Lisp and Scheme include symbols as a basic type. Evidence also shows that many programs most appropriately work on abstract symbolic value.
So, what is a symbol? A symbol is simply a word (usually) that we use to denote only itself. Unlike a variable, it has no associated value. Symbols are also atomic, we cannot split them apart (as we might a sequence of letters). The primary operation we perform on symbols is comparison (determining whether two symbols are the same). We can't even compare two symbols for order. (Should jelly come before our after jam? Who decides?)
When we want to refer to something as a value involved in a computation, rather than as the name of some other value, we put an apostrophe (usually pronounced “quote”) in front of it. In effect, by quoting the symbol, we're telling Scheme to take it literally and without further interpretation or evaluation:
>'sample'sample
We can also create symbols using the quote operation.
>(quote sample)'sample
So, what can you do with symbols? Not a whole lot. You can determine
if a value is a symbol using the symbol? procedure and
you can determine if two symbols are the same using the equal?
procedure. Note that Scheme uses #t for “yes” on
#f for “no”. We'll return to those value when we
begin to consider conditionals.
>(symbol? 'sample)#t>(symbol? 23)#f>(equal? 'sample 'elpmas)#f>(equal? 'sample 'sample)#t
Note that 'sample (with the quote) is very different
from sample (without the quote). In the first case,
Scheme interprets it as a symbol (an atomic value). In the second,
Scheme interprets it as a name for another value (e.g., something
defined with define). At first, you may find the distinction
a bit confusing. However, as you get used to programming
in Scheme, the distinction will become natural.
>(define sample 85)>'sample'sample>sample85>(symbol? 'sample)#t>(symbol? sample)#f>(equal? sample 'sample)#f
The problem becomes even worse when you use a name as a symbol, and the name has not been defined.
>(symbol? 'elpmas)#t>(symbol? elpmas)reference to undefined identifier: elpmas
Note that does
not create a symbol. Rather, it tells Scheme
to take something literally. Hence, you can can quote many different
things. For example, you can even quote Scheme expressions.
quote
>'(+ 2 3)'(+ 2 3)>(quote (* 2 3))'(* 2 3)
Although you can use quote in a variety of ways, we prefer that you limit your use to quoting symbolic values, at least for the first few weeks of class. Our experience shows that those who quote other kinds of values early in the course end up with confusing results later in the course.
Primary: [Front Door] [Schedule] - [Academic Honesty] [Disabilities] [Email] [FAQ] [IRC] [Teaching & Learning] [Grading]
Current: [Assignment] [EBoard] [Lab] [Outline] [Partners] [Reading]
Sections: [Assignments] [EBoards] [Examples] [Handouts] [Labs] [Outlines] [Partners] [Readings]
Reference: [Setup] - [Functions A-Z] [Functions By Topic] - [Racket] [Scheme Report (R5RS)] [R6RS] [TSPL4]
Related Courses: [Davis (2013F)] [Rebelsky (2010F)] [Weinman (2012F)]
Misc: [SamR] [Glimmer Labs] [CS@Grinnell] [Grinnell] [Issue Tracker (Course)]
Samuel A. Rebelsky, rebelsky@grinnell.edu
Copyright (c) 2007-2013 Janet Davis, Samuel A. Rebelsky, and Jerod Weinman. (Selected materials are copyright by John David Stone or Henry Walker and are used with permission.)

This work is licensed under a Creative Commons Attribution 3.0 Unported License. To view a copy of this
license, visit http://creativecommons.org/licenses/by-nc/3.0/
or send a letter to Creative Commons, 543 Howard Street, 5th Floor,
San Francisco, California, 94105, USA.