|
Course SyllabusCS 3540 Programming Languages
|
Instructor: Eugene Wallingford
- Office: 305 ITTC (the former East Gym)
- Phone: 273-5919
- E-Mail: wallingf@cs.uni.edu
- WWW: http://www.cs.uni.edu/~wallingf/
- Click here for my office hours and schedule
Resources
- Required texts:
- The Little Schemer, by Daniel Friedman and Matthias Felleisen (print)
The Little Schemer uses an unusual question-and-answer format to help you to think and program in a new style. It's well worth a few dollars. Some people really like this format. If you are one of them, then take a look at The Seasoned Schemer, also by Friedman and Felleisen.- Revised5 Report on the Algorithmic Language Scheme, aka "R5RS" (on-line)
This is the Scheme language definition, version 5. It contains information on all the standard data types and procedures of the language and is a simple-to-use reference for the course. Jump right to the table of contents to look up specific topics.- The Scheme Programming Language, by Kent Dybvig (on-line)
This textbook gives a thorough introduction to Scheme, with some tutorial material and several cool examples You can buy also a print copy of Dybvig's book from a variety of booksellers, including Amazon, Barnes and Noble, and probably many discount dealers.- Electronic resources:
- The course web page, http://www.cs.uni.edu/~wallingf/teaching/cs3540/
- The course mailing list, cs3540@cs.uni.edu
- The programming environment Dr. Racket
Note that to send messages to the course mailing list, you must send from the mailing address from which you are subscribed. By default, that is your uni.edu e-mail address. If you'd like to be subscribed from some other address, just let me know.
See the course resources page for information on other Scheme platforms and resources.
The study of programming languages and paradigms is fundamental to the discipline of computer science. As a computer scientist, regardless of your specialty, you should have a deep understanding of the principles of programming languages. They govern the design and use of every language that you will encounter. They affect the design of the applications you encounter. They even affect the architecture of the machines on which we run our programs. If you understand these design principles, then you will find it easier to be become an effective user of any language, to adapt to new paradigms as they evolve, and to design and implement new languages when necessary. You may be surprised to learn just how often you find yourself implementing small languages as a part of your applications.
This course aims to help you develop a deep, hands-on understanding of the essentials of programming languages. It does so by confronting you with the most fundamental idea in computer programming: The interpreter for any computer language is just another program. We will first lay the foundation for the analytic study of programming languages and then use those ideas to develop a sequence of increasingly detailed interpreters for a simple language.
One prerequisite to this approach is that you learn a programming style that makes it relatively easy to build language interpreters. We will learn Scheme, a programming language that allows us to treat programs as data and vice versa. One of the extra benefits of learning Scheme is that you will learn to program in a functional style, which will expand your programming repertiore. It will be the third "paradigm" in which you can program, in addition to procedural (Python, Ada, C) and object-oriented (Java, Python). Functional programming differs from the other two styles in a very important way: in functional programming, we compute for values, rather than for side effects.
By the end of the semester, you should feel comfortable:
Note that this course is not about any particular programming language, nor even about a smorgasbord of different languages. We will not study the syntax of new programming languages so that you can use them to write programs. Instead, we will seek develop the knowledge and skills necessary for you to be able to study other languages on your own. The course does introduce you to Scheme, a small and malleable programming language, as a tool for expressing the features of languages and writing language interpreters. It will be the microscope we use to study the broader principles of programming languages and paradigms.
You will earn your grade based on your performance on homework assignments, quizzes, and the final examination. I assign final grades using the following distribution:
| Item | Number | Weight |
|---|---|---|
| Homework | 10-12 | 35% |
| Quizzes | 4-5 | 35% |
| Final exam | 1 | 30% |
Grades will be assigned using an absolute scale:
This means that there is no curve. However, I reserve the right to lower the individual grade boundaries at the end of the term if I think that produces grades that better reflect what students have achieved.
The following schedule gives a rough sketch of the topics we will cover and the distinguished dates this semester. The quiz dates are tentative. If I decide to change a quiz date, I will notify you at least one week prior to the quiz date.
| Week | Dates | Topics | Special Events |
|---|---|---|---|
| 1 | 01/15 - 01/17 | Introduction to course and Scheme | . |
| 2 | 01/22 - 01/24 | Functional programming and Scheme | . |
| 3 | 01/29 - 01/31 | Functional programming and Scheme | . |
| 4 | 02/05 - 02/07 | Induction and recursion | Quiz 1 (Tue) |
| 5 | 02/12 - 02/14 | Recursive programming techniques | . |
| 6 | 02/19 - 02/21 | Recursive programming techniques | . |
| 7 | 02/26 - 02/28 | Recursive programming techniques | . |
| 8 | 03/05 - 03/07 | Syntactic abstraction | Quiz 2 (Thu) |
| 9 | 03/12 - 03/14 | Syntactic abstraction | . |
| . | 03/19 - 03/21 | spring break | . |
| 10 | 03/26 - 03/28 | Syntactic abstraction | . |
| 11 | 04/02 - 04/04 | Data abstraction | Quiz 3 (Tue) |
| 12 | 04/09 - 04/11 | Data abstraction | . |
| 13 | 04/16 - 04/18 | Data abstraction | Quiz 4 (Thu) |
| 14 | 04/23 - 04/25 | Interpreters | . |
| 15 | 04/30 - 05/02 | Interpreters; course wrap-up | . |
The FINAL EXAM is Thursday, May 9, from 3:00 PM - 4:45 PM.