Software Alternatives, Accelerators & Startups

Real World Haskell VS Practical Common Lisp

Compare Real World Haskell VS Practical Common Lisp and see what are their differences

This page does not exist

Real World Haskell logo Real World Haskell

Learning Resources, Programming Courses, and Learn Programming

Practical Common Lisp logo Practical Common Lisp

Learning Resources
  • Real World Haskell Landing page
    Landing page //
    2020-01-02
  • Practical Common Lisp Landing page
    Landing page //
    2019-12-25

Real World Haskell features and specs

  • Comprehensive Introduction
    Real World Haskell provides a thorough introduction to Haskell, covering all fundamental concepts, which is beneficial for both beginners and intermediate users.
  • Practical Examples
    The book includes numerous practical examples and exercises that help readers understand how Haskell can be applied to solve real-world problems.
  • Focus on Real-World Applications
    The book emphasizes how Haskell can be used in practical, real-world scenarios, which can be inspiring and motivating for learners.
  • Free Online Access
    Real World Haskell is available for free online, making it accessible to a wide audience without the barrier of cost.

Possible disadvantages of Real World Haskell

  • Dated Material
    Some parts of the book may be outdated, as the field of Haskell programming has evolved since its release, which might not cover the latest language features or libraries.
  • Steep Learning Curve
    While thorough, the book can be challenging for complete beginners due to the complex nature of Haskell and the assumption of some prior programming knowledge.
  • Sparse Community Support
    Given its age, there might be limited community support for discussions or Q&A about the book's content, compared to more recent resources.
  • Limited Coverage of Advanced Topics
    Although comprehensive for beginners to intermediate users, the book may not delve deeply into advanced Haskell topics that are of interest to expert users.

Practical Common Lisp features and specs

  • Comprehensive Introduction
    The book offers a thorough introduction to Common Lisp programming, catering to both beginners and experienced programmers by covering the basics and advanced topics.
  • Practical Approach
    It emphasizes practical applications of Lisp, with numerous examples and projects that illustrate real-world usage, making it useful for learning how to write practical and efficient code.
  • Engaging Writing Style
    The author maintains an engaging and accessible writing style that keeps readers interested while explaining complex concepts in an understandable manner.
  • Free Access Online
    The book is available for free online, providing easy access to anyone interested in learning about Common Lisp without financial barriers.

Possible disadvantages of Practical Common Lisp

  • Assumes Prior Programming Knowledge
    The book may assume that readers have some programming background, which might make it challenging for complete beginners to grasp certain concepts quickly.
  • Dated Examples
    Given its publication date, some examples might be somewhat outdated in terms of current technological standards and might not represent the latest best practices in programming.
  • Focus on High-Level Understanding
    While it covers many aspects of Lisp, the book might not delve deeply into certain advanced technical details, which could be a downside for those seeking in-depth technical expertise.
  • Limited Coverage of Modern Libraries
    The book might not address newer libraries and tools that have emerged in the Lisp ecosystem since its publication, potentially missing out on some modern practices.

Real World Haskell videos

No Real World Haskell videos yet. You could help us improve this page by suggesting one.

Add video

Practical Common Lisp videos

Practical Common Lisp

More videos:

  • Review - Practical Common Lisp

Category Popularity

0-100% (relative to Real World Haskell and Practical Common Lisp)
API Tools
100 100%
0% 0
Education
0 0%
100% 100
Developer Tools
100 100%
0% 0
Programming Language
0 0%
100% 100

User comments

Share your experience with using Real World Haskell and Practical Common Lisp. For example, how are they different and which one is better?
Log in or Post with

Social recommendations and mentions

Based on our record, Practical Common Lisp should be more popular than Real World Haskell. It has been mentiond 52 times since March 2021. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.

Real World Haskell mentions (15)

  • Functors, Applicatives, and Monads
    > Yes, I really need a real word Haskell project simple enough to understand all the math concept There actually is a book with precisely that title, which provides what you're asking for: https://book.realworldhaskell.org/ > Like, I don't know when to implement the Monad type-class to my domain data types A concrete type (such as your Tweet type) can't be a Monad. Monad is implemented on generic types (think:... - Source: Hacker News / about 1 month ago
  • Revisiting Haskell after 10 years
    The Real World Haskell book is also outdated, but can also be read online for free, and has many examples and exercises on writing practical and usable applications. Although I have not read the book to the fullest, I still recommend its monad transformers chapter, as it was the one that made it click for me. - Source: dev.to / over 1 year ago
  • Book list opinion for revision/self-study
    Stage 2: Advanced topics - Real World Haskell - Haskell in Depth. Source: over 1 year ago
  • Haskell book after Get Programming with Haskell?
    I also liked https://book.realworldhaskell.org/ since it layers up to (wait for it) real world problems e.g reading a barcode from an image. I'm old so the O'Reilly format has a warm place in my heart. More textbooky. Source: about 2 years ago
  • What is the best resource to learn Haskell in 2023?
    So we have LYAH, also there is O'Reilly book, which is a bit old but still mostly good, many people start with this book. After any of those three you can probably decide for yourself what to use to continue the study. Source: over 2 years ago
View more

Practical Common Lisp mentions (52)

  • I Chose Common Lisp
    I began learning Common Lisp (CL) from the Common Lisp HyperSpec (CLHS): https://www.lispworks.com/documentation/HyperSpec/Front/Contents.htm When I began learning CL about two decades ago, I did not know of any other source, so CLHS was my only source back then and I think it has served me well. A popular recommendation these days is Practical Common Lisp (by Peter Seibel): https://gigamonkeys.com/book/. - Source: Hacker News / 4 months ago
  • Holding a Program in One's Head (2007)
    A quote originally (AFAIK) from the wonderful (and free!) book 'Practical Common Lisp'. https://gigamonkeys.com/book/. - Source: Hacker News / 8 months ago
  • Defense of Lisp Macros
    The Giga Monkeys Book, Practical Common Lisp is also excellent: https://gigamonkeys.com/book/. - Source: Hacker News / 9 months ago
  • The Loudest Lisp Program
    > So it's really pick your poison; either the child controls the call, at the risk of doing it wrong or not at all, or it doesn't but then certain things become impossible. CL lets you do both in various ways: the typical way to define a constructor is an :AFTER method that just sets the slots (fields in other languages) of the object and having a lot of behavior in constructors is unusual. You can also define an... - Source: Hacker News / about 1 year ago
  • The Loudest Lisp Program
    There are a bunch of things to learn from Lisp: * list processing -> model data as lists and process those * list processing applied to Lisp -> model programs as lists and process those -> EVAL and COMPILE * EVAL, the interpreter as a Lisp program * write programs to process programs -> code generators, macros, ... * write programs in a more declarative way -> a code generator transforms the description into... - Source: Hacker News / about 1 year ago
View more

What are some alternatives?

When comparing Real World Haskell and Practical Common Lisp, you can also consider the following products

Haskell From First Principles - A Haskell book for beginners that works for non-programmers and experienced hackers alike.

Land of Lisp - Learning Resources

Exercism - Download and solve practice problems in over 30 different languages.

Hackr.io - There are tons of online programming courses and tutorials, but it's never easy to find the best one. Try Hackr.io to find the best online courses submitted & voted by the programming community.

Convex.dev - Global state management for react

Racket Lang - Racket (formerly PLT Scheme) is a modern programming language in the Lisp/Scheme family, suitable...