CS 3304: Comparative Languages
FP Foundations, Scheme
[
Course Documents
] : [
FP Foundations, Scheme
]
Previous
Contents
Next
Keyword Index
Scheme Syntax Basics
Case-insensitive
Data Types:
Atoms
: identifiers, symbols, numbers
Lists
(S-expressions)
List form: parenthesized collections of sublists and/or atoms
(a b c d)
(a (b c) d e)
All lists are internally represented by singly-linked chains where each node has 2 pointers (think "data" and "next")