VA
18 de mar. de 2018
This course (as Part A and C) is great - Dan is great in teaching and the content is perfect for anyone who wants to learn more about programming languages!
Warning - you might end up loving FP :)
AZ
23 de mar. de 2018
Great course with really interesting and challenging assignments that allow to get more precise vision on programming languages (especially on PL's typing systems) and get experience with modern LISP
por Arent S
•3 de feb. de 2019
The programming languages courses are by far the best Coursera courses that I've seen in my life.
The teacher is passionate and really wants to teach programming 'idioms'. The syntax of a language, or the structure for that matter are not as relevant as the underlying idea. With this course you will learn to recognize the underlying patterns of programming. These patters will always be usefull, no matter the language or environment. I highly reccomend this course.
por Julie L
•4 de jun. de 2019
This course was awesome. I would caution you to take Dan's claim that "Part A is almost as substantial as Part B and Part C combined" with a grain of salt. This couldn't be further from the truth. Parts B and C are challenging, with the difficulty increasing as you progress further into the course. This makes the three part series an exceptional value.
por Brandon I
•17 de feb. de 2020
Nice follow-up to the first course. I've seen Racket before, but seeing Racket structs used the way they were - relating them to "creating a new datatype" - was an "aha" moment for me. It was also good for me to finally learn a little about about what "macro hygiene" was all about; how to use memoization; and to get some practice with streams. They also weren't kidding when they said that "debugging an interpreter is an acquired skill" :) Finally, the material on the soundness and completeness of a static type-checker was completely new to me, but I liked those concepts. The only caveat is that you should've taken Part A before, since this course often makes heavy, non-trivial references to ML, and other ideas taught in that course.
por xinxiao
•5 de ago. de 2019
This is a great programming course. The instructor explained the key concepts extremely clear and concise.
I found this course when reading the well-known SICP book (Structure and Interpretation of Computer Programs), and I was trying to pick up a scheme dialect, and found that several people suggest racket.
However, the course is actually more interesting than racket itself. It covers lots of functional programming idioms, in a precise and systematic way. Also some concepts where I read in other places informally, such as "thunk", "lazy evaluation", "infinite stream" are explained with great clarity. It also makes reading SICP much easier.
I wish there could be more courses like this in Coursera.
por Julian M
•9 de may. de 2018
DO THIS COURSE. It brings together everything in part A. In particular, the final shorter week on the differences between Statically and dynamically typed languages is mind-bending and brilliant.
por Sean E
•6 de nov. de 2018
This entire course (A through C) is gold. Nothing to add, if you have the time, take it! Thanks so much to Dan an the team!
por Lukáš H
•20 de mar. de 2018
Extremely enjoyable course! I wasn't exactly looking forward to using the Racket language --- I knew nothing about it, to be honest, but it really impressed me. A beautiful language. But the course is not really about the language used. It covers some interesting topics (delayed evaluation, streams, type systems) and contains two very nice homework assignments: the first is mostly focused on streams (which is actually quite a fun) and in the second one you implement an interpreter for a simple language that contains closures!
por Greg G
•19 de mar. de 2018
It's definitely harder than Part A - Racket with its LISP-like syntax was pretty daunting for me. I just can't imagine using it in production after using so many C-style languages, but I know that there are lots of Scheme and Clojure fans out there. But it was great to learn about dynamic typing, macros, and getting to deeply understand how interpreters work. That was a real wow moment!
por Jack
•12 de may. de 2020
Fantastic sequel to the first course, it goes into a lot more functional programming idioms with Racket, and also reinforces old ideas. The second assignment where you write an interpreter will take a few days, but you'll understand how closures work in practice.
I will say that Racket is very trippy, and it will take you deep into the FP jungle. Not everyone makes it out intact.
por Johnathan F
•14 de ene. de 2018
Courses I've taken on programming languages often focus on one language. You learn the different concepts for that one language but don't understand why the language chose those concepts and what the alternatives are. By covering three languages, this course integrates the concepts and their alternatives to give you a solid understanding of how languages work.
por Guo F
•15 de nov. de 2019
I can't say enough good things about this course. Learned a ton from it! Although I doubt I will do a comprehensive amount of functional programming, I don't doubt that this course has consolidated the foundation of my "imperative thinking" and makes me a better Java/C++ programmer. Thanks Dan!
非常喜欢Dan的讲课风格,让我对UW的好感大增!可惜,UW没有CS master的degree申请呀!
por Thassilo H
•1 de nov. de 2017
Part B continues where Part A ended. The second programming assignment is really the heart of this Part, it is about implementing a small programming language yourself which gives a completely new view on the theoretical content so far. This is challenging and a lot of fun. If you liked Part A, you definetly need to continue your journey here.
por Anton Z
•24 de mar. de 2018
Great course with really interesting and challenging assignments that allow to get more precise vision on programming languages (especially on PL's typing systems) and get experience with modern LISP
por Keith R
•22 de mar. de 2018
I'm a pretty experienced C/C++ programmer and this course has been a brilliant introduction into functional programming and the underlying philosophies underpinning programming languages in general.
por Daniele V
•31 de mar. de 2020
amazing course. So many good things I don't know where to start. The whole series (a-b-c) is a joy to study. In particular the section on streams and infinite list is very fascinating.
por John K
•22 de sep. de 2022
A lot to absorb, but adds greatly to understanding of language design, important functional programming.topics (e.g. closures and environments) evaluation topics (e.g., lazy evaluation) ever more recursion, and type systems. Will I walk away with all of this learning permanently in my memory? Probably not, but I will easily regain it when it arises, and importantly I will recognize when something calls for it. Also, makes me conversant in the salient features of functional programming and allows seeing the forest better, not just the trees.
por Jack Z
•3 de may. de 2021
An excellent continuation. Before this course, I thought macros was a scary idea. They still might be, but Dan introduces it in a very simple way. I appreciate how Dan always utilizes simple vocabulary to explain technical concepts. Unlike other instructors, Dan does not mindlessly overload with technical jargon as if that's the only way to communicate. That said, it's not a simple course! You will go through writing a small interpreter, learn what a macro is, lists and lisp.
por Srikanth C
•7 de sep. de 2020
Excellent content, and a very well-articulated and engaging instructor! The preceding course and this one are a fantastic resource for upping one's programming skills, style and learning about Functional Programming. They really open one's mind up about programming and programming languages, in general. The assignments are challenging, and it was a very rewarding experience to solve them.
por Henrik B
•23 de dic. de 2017
The racket language is a bit strange and takes a bit to get used to, however after doing the homework and listening to the videos you realize that the choice is a good one for this course. The second homework gives a good understanding of how closures and evaluation of functions really work.
A lot of work, but the reward is well worth it.
por Jo
•24 de may. de 2019
Excellent course. Clear and enlightening lectures. Two solid programming assignments, which help with internalizing the topics covered in the course. The first covers things like closures, implementing laziness with closures, and using local state from closures for memoization. In the second we implement a basic lisp interpreter!
por danijel k
•10 de nov. de 2017
The best teacher I've had chance to listen to. I've completed his corse on programming languages several years ago but always like to return and listen again. It's two things like good movie one can always return to and learn something new, or learn how to be a good teacher, and as Dan says: painting that fence. :)
por Allison C
•9 de abr. de 2018
I really enjoyed learning Racket and comparing and contrasting it with ML. Studying different languages has really helped me understand the strengths and weaknesses of each. Writing the "evaluator" was the best part of the course. Thanks to Dan Grossman and everyone else who put this course together.
por Renato P
•14 de may. de 2021
The second assignment is challenging but very interesting. The task is to implement an interpreter in Racket for a made-up programming language with features like anonymous functions and function closures. Dan Grossman is an excellent teacher as well. I can't recommend this course enough.
por Krishna A
•29 de jul. de 2017
Excellent course, which continues where Part A left off. The use of Racket (dynamically typed) language, presents an interesting contrast with ML and drives home the point of some of the design decisions involved in language design. Thoroughly enjoyed implementing the sample interpreter.
por Pablo A
•11 de mar. de 2019
Excellent intro to a Lisp and functional programming in a dynamically typed language. Very hard but rewarding homework. It is worth the effort in my opinion to make you a better programmer if you are already one or to train you right from the beginning if you are new to it.