Coder Social home page Coder Social logo

cs3200-f21's Introduction

Organization of Programming Languages

Course Discord server

Pyret style guide

Fall 2021

There are thousands of programming languages, from A#.NET to ZPL and everything in between. Do you need to know all of them to be a good programmer/engineer/computer scientist?

The goal of this course is to convince you that the answer to this question is no. In fact, many programming languages โ€” while superficially distinct at the level of syntax โ€” are actually quite similar once you take a closer look.

This semester, we'll explore by boiling a number of programming languages down to a small set of more fundamental language features, including structured data, control, mutable state, (higher-order) functions, types, polymorphism, and objects. Once you understand how these features work in isolation, you'll start seeing them (or not!) in all your favorite programming languages. This, in turn, will make it easy to pick up new languages with minimal fuss.

To learn many of these features, you'll be implementing them yourselves within a series of increasingly complex interpreters for small programming languages. The meta-language for programming and discussion is Pyret, a new PL developed primarily by Shriram Krishnamurthi at Brown University. Try it out now at code.pyret.org/editor.

Pyret QuickStart Links

Prerequisites

CS 2650 and 3000, but also: Some mathematical maturity (at the level of "I've seen and done a few proofs before") and (most importantly) a desire to learn!

Details
Lecture MWF 3:05-4:00pm in Stocker 103
Instructor Alexander Bagnall ([email protected])
Office Hours MWF 2-3pm (Stocker 379)
TA Jacob Schaupp ([email protected])

Textbook

The primary textbook is available online: Programming and Programming Languages (PAPL). Be sure to use the 2020 edition!

I may also assign select readings from Types and Programming Languages (TAPL). Any such readings will be made available on Blackboard.

Course Structure

We'll meet MWF from 3:05-4pm. Attendance in class is required. Homework consists of programming assignments and Blackboard quizzes. We'll have both a traditional in-class midterm and a final.

Grade Breakdown

Component Percentage
Programming assignments 40%
Attendance and Quizzes 10%
Midterm exam 20%
Final exam 30%

Blackboard will be used to report grades and to post lecture notes and reading material. Up-to-date information on all other aspects of the course (assignment due dates, etc.) will be posted on this website.

Schedule

The schedule is subject to revision.

Week Topic Reading Assignment
Week 1 (23 Aug) Intro. to PL, Pyret PAPL 1, 3, 4.1-4.3, 5.1-5.3, Supplementary: Persistence of Memory PA0: Intro. to Pyret (28 Aug)
Week 2 (30 Aug) Natural numbers, induction, lists PAPL 6.1-6.5, 10, Supplementary: Natural Numbers (on BB) Q0 (3 Sep)
Week 3 (6 Sep) Structured and conditional data PAPL 11, Supplementary: Types as Sets PA1: Lists (11 Sep)
Week 4 (13 Sep) Collections, recursive data PAPL 12, 13 Q1 (17 Sep)
Week 5 (20 Sep) Higher-order functions PAPL 15, 16, Supplementary: A tutorial on the universality and expressiveness of fold (sections 1-3.1) PA2: Binary trees (25 Sep)
Week 6 (27 Sep) Balanced BSTs PAPL 18 Q2 (29 Sep)
Week 7 (4 Oct) State, Equality PAPL 20, 22 PA3: BSTs (9 Oct)
Week 8 (11 Oct) Abstract syntax, parsing PAPL 24, Supplementary: TAPL 3 Midterm Exam (15 Oct)
Week 9 (18 Oct) Interpretation PAPL 25 PA4: Scheme0 (23 Oct)
Week 10 (25 Oct) Interpreting conditionals and functions PAPL 26, 27 Q3 (29 Oct)
Week 11 (1 Nov) Types, typing judgments PAPL 28, Supplementary: TAPL 8 PA5: Typed Scheme0 (6 Nov)
Week 12 (8 Nov) Types contd., type safety PAPL 29 Q4 (12 Nov)
Week 13 (15 Nov) Parametric polymorphism PAPL 30 PA6: Scheme1 (20 Nov)
Week 14 (22 Nov) TBD / Thanksgiving TBD No quiz
Week 15 (29 Nov) TBD / Final review TBD No quiz -- study for finals!
Exam week (6 Dec) FINAL EXAM: Wednesday 12/8/21 12:20pm in Stocker 103

Assignments are due in Blackboard at 11:59pm unless otherwise specified. Q0, Q1, etc., denote quizzes in Blackboard, generally due on the Fridays of weeks with no due programming assignments (PAs).

Homework and Collaboration Policies

Acceptable Collaboration Matrix

Instructor/TA Noninstructor (e.g., Another Student)
You All collaboration allowed High-level discussion (of the problems, not your code!) allowed but only after you've started the assignment; must be documented in README as described below

Unless otherwise noted, homeworks are due Saturdays by 11:59 p.m. Late homework assignments will be penalized according to the following formula:

  • Up to 24 hours late: no deduction, for a max 2 late homeworks per student across the entire semester
  • Homeworks later than 24 hours, or from students who have already turned in 2 late homeworks, will receive 0 points.

You may discuss the homework with other students in the class, but only after you've attempted the problems on your own first. If you do discuss the homework problems with others, write the names of the students you spoke with, along with a brief summary of what you discussed, in a README comment at the top of each submission. Example:

(* README Alex Bagnall, Assn #1 
I worked with X and Y. We swapped tips regarding the use of pattern-matching in Rust. *)

However, under no circumstances are you permitted to share or directly copy code or other written homework material, except with course instructors. The code and proofs you turn in must be your own. Remember: homework is there to give you practice in the new ideas and techniques covered by the course; it does you no good if you don't engage!

That said, if we find that you have cheated on an assignment in this course, you will immediately:

  • Be referred to the Office of Community Standards (which may take disciplinary action against you, possibly expulsion); and
  • Flunk the course (receive a final grade of F).

Students in EECS courses such as this one must adhere to the Russ College of Engineering and Technology Honor Code, and to the OU Student Code of Conduct. If you haven't read these policies, do so now.

Students with Disabilities

If you suspect you may need an accommodation based on the impact of a disability, please contact me privately to discuss your specific needs. If you're not yet registered as a student with a disability, contact the Office of Student Accessibility Services first.

Student Outcomes vs. Course Learning Outcomes

  1. An ability to analyze a complex computing problem and to apply principles of computing and other relevant disciplines to identify solutions. Students will be able to:
  • Design and implement structured data types to solve computational problems
  • Design and implement higher-order functions to solve computational problems
  • Use pattern-matching to analyze and compute on structured data
  • Use recursion to write functions that manipulate recursive collection types such as abstract syntax trees and lists
  • Use polymorphism to implement a generic collection type such as a symbol table
  • Analyze and reason equationally about a functional program in order to prove its correctness
  1. An ability to apply computer science theory and software development fundamentals to produce computing-based solutions. Students will be able to:
  • Apply understanding of grammars and syntax trees to implement a parser for an extended arithmetic expression language that conforms to a BNF specification
  • Apply understanding of inductively defined data types, pattern-matching, recursion, and programming language semantics to implement an interpreter for an extended arithmetic expression language
  • Apply understanding of type systems, type judgments, and inductively defined typing rules to implement a type checker for an extended arithmetic expression language
  • Apply understanding of programming language design and implementation to extend an existing implementation of a language (parser, type checker, interpreter) to support new language features such as higher-order functions, mutable references, or closures

cs3200-f21's People

Contributors

bagnalla avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.