Overview -------- In this chapter, we provide an outline of the course, along with a brief motivation and key learning outcomes. Course Information ~~~~~~~~~~~~~~~~~~ - `COMP 371 course description `_ - `COMP 471 course description `_ - `Department of Computer Science `_ - `Loyola University Chicago `_ Motivation ~~~~~~~~~~ There are a number of reasons why you would want to study programming languages. To name a few: - Knowing several programming *paradigms* will help you think about more problems in better ways. - Knowing several programming *languages* will help you implement your solutions in better ways. - The subject matter is exciting and intellectually challenging. - Increasing numbers of local, national, and global employers love it! Key learning outcomes ~~~~~~~~~~~~~~~~~~~~~ We deliberately chose the learning outcomes for this course to complement other courses in your computer science or software engineering curriculum. Upon entering this course, you will already be familiar with the imperative and object-oriented paradigms, coming from languages such as Java, C++, C#, or Python. Most likely, you will also be familiar with basic machine architecture and memory management using C or C++. In this course, we will pursue two overarching learning outcomes and three more specific ones: - an overview of programming paradigms - an understanding of the programming language design space - proficiency in functional programming - an understanding of program representation and interpretation/execution - basic competence in concurrent programming Given the widespread availability in multi-core hardware ranging from mobile devices to enterprise servers, there is a growing interest in programming paradigms and techniques that will take advantage of this hardware. Functional programming, which de-emphasizes mutable state, in conjunction with suitable concurrency constructs, is particularly useful. We will also "look under the hood" by studying how to represent programs and interpret, execute, or otherwise process those representations. Some starting points for functional programming ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ You might find the following resources useful to get into the functional programming mindset: - Presentation by Martin Odersky: Scala with Style `(YouTube) `_ - Interview with Simon Peyton-Jones on Functional Programming and Haskell `(SE Radio audio podcast) `_ - Presentation by Läufer, Thiruvathukal, and Kaylor: The Promise of Statically Typed Functional Programming: Broader Context and Language Comparison `(visual presentation) <_static/luc-amc.html>`_ .. todo:: incorporate visual presentation here Course outline ~~~~~~~~~~~~~~ Here is a more detailed course outline (subject to revision). .. include:: detailedoutline.txt Bloom's taxonomy ~~~~~~~~~~~~~~~~ The letters refer to the successive levels of learning from the cognitive domain of `Bloom's taxonomy `_: - K: know/remember the term - C: comprehend/understand the concept - A: apply the technique - analyze/evaluate/create (advanced levels) .. todo:: map Bloom levels to course outline