Programming in Scheme
Title | Programming in Scheme PDF eBook |
Author | Michael Eisenberg |
Publisher | |
Pages | 304 |
Release | 1990 |
Genre | Scheme (Computer program language) |
ISBN | 9780262050432 |
Programming and Meta-Programming in Scheme
Title | Programming and Meta-Programming in Scheme PDF eBook |
Author | Jon Pearce |
Publisher | Springer Science & Business Media |
Pages | 360 |
Release | 1998 |
Genre | Scheme (Computer program language). |
ISBN | 0387983201 |
A comprehensive course in Scheme, covering all of its major features: abstraction; functional programming; data types; recursion; and semantic programming. This volume aims to teach students to program in Scheme and discusses different programming paradigms in depth. An important theme throughout is that of meta-programming, thus providing an insight into topics such as type-checking and overloading.
Scheme and the Art of Programming
Title | Scheme and the Art of Programming PDF eBook |
Author | George Springer |
Publisher | |
Pages | 344 |
Release | 1990 |
Genre | Computer programming |
ISBN |
This is the first introduction to computer programming text to focus on functional programming which is not too mathematically rigorous for freshmen. The text features an introduction to the Scheme programming language and real-world examples and exercises which are easy to follow and learn from.
Programming in SCHEME
Title | Programming in SCHEME PDF eBook |
Author | Mark Watson |
Publisher | Springer |
Pages | 242 |
Release | 2012-12-06 |
Genre | Computers |
ISBN | 1461223946 |
Scheme provides a flexible and powerful language for programming embodying many of the best features of logical and functional programming. This enjoyable book provides readers with an introduction to programming in Scheme by constructing a series of interesting and re-usable programs. The book includes two diskettes containing MIT Scheme to run on Windows PCs.
Structure and Interpretation of Computer Programs
Title | Structure and Interpretation of Computer Programs PDF eBook |
Author | Harold Abelson |
Publisher | MIT Press |
Pages | 642 |
Release | 2022-05-03 |
Genre | Computers |
ISBN | 0262367629 |
A new version of the classic and widely used text adapted for the JavaScript programming language. Since the publication of its first edition in 1984 and its second edition in 1996, Structure and Interpretation of Computer Programs (SICP) has influenced computer science curricula around the world. Widely adopted as a textbook, the book has its origins in a popular entry-level computer science course taught by Harold Abelson and Gerald Jay Sussman at MIT. SICP introduces the reader to central ideas of computation by establishing a series of mental models for computation. Earlier editions used the programming language Scheme in their program examples. This new version of the second edition has been adapted for JavaScript. The first three chapters of SICP cover programming concepts that are common to all modern high-level programming languages. Chapters four and five, which used Scheme to formulate language processors for Scheme, required significant revision. Chapter four offers new material, in particular an introduction to the notion of program parsing. The evaluator and compiler in chapter five introduce a subtle stack discipline to support return statements (a prominent feature of statement-oriented languages) without sacrificing tail recursion. The JavaScript programs included in the book run in any implementation of the language that complies with the ECMAScript 2020 specification, using the JavaScript package sicp provided by the MIT Press website.
Revised [6] Report on the Algorithmic Language Scheme
Title | Revised [6] Report on the Algorithmic Language Scheme PDF eBook |
Author | Michael Sperber |
Publisher | Cambridge University Press |
Pages | 312 |
Release | 2009 |
Genre | Computers |
ISBN | 9780521193993 |
A series of reports describing the innovative programming language Scheme.
LISP 1.5 Programmer's Manual
Title | LISP 1.5 Programmer's Manual PDF eBook |
Author | John McCarthy |
Publisher | MIT Press |
Pages | 116 |
Release | 1962-08-15 |
Genre | Computers |
ISBN | 9780262130110 |
The manual describes LISP, a formal mathematical language. LISP differs from most programming languages in three important ways. The first way is in the nature of the data. The LISP language is designed primarily for symbolic data processing used for symbolic calculations in differential and integral calculus, electrical circuit theory, mathematical logic, game playing, and other fields of artificial intelligence. The manual describes LISP, a formal mathematical language. LISP differs from most programming languages in three important ways. The first way is in the nature of the data. In the LISP language, all data are in the form of symbolic expressions usually referred to as S-expressions, of indefinite length, and which have a branching tree-type of structure, so that significant subexpressions can be readily isolated. In the LISP system, the bulk of the available memory is used for storing S-expressions in the form of list structures. The second distinction is that the LISP language is the source language itself which specifies in what way the S-expressions are to be processed. Third, LISP can interpret and execute programs written in the form of S-expressions. Thus, like machine language, and unlike most other high level languages, it can be used to generate programs for further executions.