coalton VS awesome-cl

Compare coalton vs awesome-cl and see what are their differences.

coalton

Coalton is an efficient, statically typed functional programming language that supercharges Common Lisp. (by coalton-lang)

awesome-cl

A curated list of awesome Common Lisp frameworks, libraries and other shiny stuff. (by CodyReichert)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
coalton awesome-cl
84 63
990 2,450
4.1% -
8.4 8.7
6 days ago 5 days ago
Common Lisp Makefile
MIT License GNU General Public License v3.0 or later
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

coalton

Posts with mentions or reviews of coalton. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-11.
  • How to Write a (Lisp) Interpreter (In Python)
    18 projects | news.ycombinator.com | 11 Mar 2024
    It's still… not the same. In CL (and specially with SBCL), we get compile time (type) errors and warnings at the blink of an eye, when we compile a single function with a keystroke (typically C-c C-c in Slime).

    And there's also been improvement, see Coalton for a ML on top of CL. (https://github.com/coalton-lang/coalton/)

  • Typing Haskell in Haskell
    1 project | news.ycombinator.com | 20 Feb 2024
    For the parenthetically inclined among us, there's also an implementation in Coalton: <https://github.com/coalton-lang/coalton/tree/main/examples/t...>
  • Embracing Common Lisp in the Modern World
    6 projects | news.ycombinator.com | 24 Jan 2024
    Common Lisp has bad marketing (even OCaml has Twitch streamers and "influencers" now), and bad support for general editors, both of which make it a non-starter for most curious people who have an afternoon to try something. But behind all that is magnificent activity for those who got over the initial potential energy barrier. Just to give some examples:

    1. SBCL, the most popular open source implementation of Lisp, is seeing potentially two new garbage collectors. One of them is a parallel collector written by a university student (!!) which blows my mind.

    2. SBCL has better and better support for deploying Liwp as a C-compatible shared library, using SBCL-LIBRARIAN. It makes it play nicer with other applications in C and Python.

    3. Coalton is another exciting development that allows a Haskell type system and "Lisp-1" functional programming in Common Lisp. That means type classes (or traits), something Lisp hasn't really had a proper notion of, and full type inference. Persistent sequences based off of RRB-trees were recently merged, and interestingly, they're implemented purely in Coalton [1]. That means Clojure-like seqs.

    It's interesting to see users of Lisp generating the above ideas and libraries, not a special in-group of committees, "official" developers, etc.

    [1] https://github.com/coalton-lang/coalton/blob/main/library/se...

  • Steel – An embedded scheme interpreter in Rust
    13 projects | news.ycombinator.com | 3 Dec 2023
    Use an editor that auto-inserts parens and that indents the code correctly. Now nothing bad can happen. And the parens are used to edit code structurally.

    re typing: Coalton brings Haskell-like typing on top of CL. https://github.com/coalton-lang/coalton/ Other lisps are typed: typed racket, Carp… and btw, SBCL's compiler brings some welcome type warnings and errors (unlike Python, for instance).

  • Show HN: Collaborative Lisp Coding on Discord
    2 projects | news.ycombinator.com | 18 Sep 2023
    If you like type safety, this project would be perfect for using https://coalton-lang.github.io/ so your REPL supported Common Lisp out of the gate.
  • A fully-regulated, API-driven bank, with Clojure
    3 projects | news.ycombinator.com | 29 Aug 2023
    Agree that you can use types to express and prove logical properties via compiler; it can be a fun way to solve a problem though too much of it tends to frustrate coworkers. It's also not exactly "low cost"; here's an old quip I have in my quotes file:

    "With Scala you feel smart having just got something to work in a beautiful way but when you look around the room to tell your clojure colleague how clever you are, you notice he left 3 hours ago and there is a post-it saying use a Map." --Daniel Worthington-Bodart

    > On the contrary, they're still the most effective technique we've found for improving program correctness at low cost.

    This is not borne out by research, such as there is any of any quality: https://danluu.com/empirical-pl/ The best intervention to improve correctness, if not already being done, is code review: https://twitter.com/hillelogram/status/1120495752969641986 This doesn't necessarily mean dynamic types are better, just that if static types are better, they aren't tremendously so to obviously show in studies, unlike code review benefit studies.

    My own bias is in favor of dynamic types, though I think the way Common Lisp does it is a lot better than Python (plus Lisp is flexible enough in other ways to let static type enthusiasts have their cake and eat it too https://github.com/coalton-lang/coalton), and Python better than PHP, and PHP better than JS. Just like not all static type systems are C, not all dynamic type systems are JS. Untyped langs like assembly or Forth are interesting but I don't have enough experience.

    I don't find the argument that valuable though, since I think just focusing on dynamic vs static is one of the least interesting division points when comparing languages or practices, and if we're trading experience takes I think Clojure's immutable-by-default prevents more bugs than any statically typed language that is mutable by default. It's not exactly a low cost intervention though, and when you really need to optimize you'll be encouraged by the profiler to replace some things with Java native arrays and so on. I don't think changing to static types would make a quality difference (especially when things like spec exist to get many of the same or more benefits) and would also not be a low cost intervention.

    Last quip to reflect on. "What's true of every bug found in the field? ... It passed the type checker. ... It passed all the tests. Okay. So now what do you do? Right? I think we're in this world I'd like to call guardrail programming. Right? It's really sad. We're like: I can make change because I have tests. Who does that? Who drives their car around banging against the guardrail saying, "Whoa! I'm glad I've got these guardrails because I'd never make it to the show on time."" --Rich Hickey (https://www.infoq.com/presentations/Simple-Made-Easy/)

  • Coalton to Lispers without a background in ML-like languages
    1 project | news.ycombinator.com | 26 Aug 2023
    Coalton seems great, I love the idea. This issue seems problematic, though: https://github.com/coalton-lang/coalton/issues/84
  • Compiler Development: Rust or OCaml?
    5 projects | news.ycombinator.com | 7 Aug 2023
    > Lisps can be very flexible, but they usually lack static type safety, opening a wide and horrible door to run-time errors.

    People should do basic research before writing something silly like this. Qualifying your statement with 'usually' is just a chicken sh*t approach. Common Lisp and Racket have optional strong typing, leaving the responsibility and choice to the developer. Common Lisp is great for implementing compilers. You also have thing like Typed Racket and Coalton. The latter is comletely statically typed ala MLTON

    https://github.com/coalton-lang/coalton

  • Why I Still Lisp (and You Should Too)
    1 project | /r/lisp | 30 Jun 2023
    Have you checked out Coalton? It allows static typing a la Haskell within Common Lisp. Fully interoperable with CL, including through SLIME etc.
  • Common Lisp for large software
    1 project | /r/lisp | 12 Jun 2023
    I've not regretted using Common Lisp for large, professional projects. However, I started Coalton so that some parts of a Common Lisp project can have strong, static, strict types—reaping benefits of compile-time errors and increased efficiency when I need it, without having to rewrite everything.

awesome-cl

Posts with mentions or reviews of awesome-cl. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-01.
  • KamilaLisp – A functional, flexible and concise Lisp
    6 projects | news.ycombinator.com | 1 Mar 2024
    Hello, a single counter-example I hope https://lispcookbook.github.io/cl-cookbook/editor-support.ht...

    (see more from https://github.com/CodyReichert/awesome-cl?tab=readme-ov-fil...

    https://cl-community-spec.github.io/pages/index.html

    and some more)

  • Why Is Common Lisp Not the Most Popular Programming Language?
    8 projects | news.ycombinator.com | 14 Feb 2024
    Everyone, if you don't have a clue on how's Common Lisp going these days, I suggest:

    https://lisp-journey.gitlab.io/blog/these-years-in-common-li... (https://www.reddit.com/r/lisp/comments/107oejk/these_years_i...)

    A curated list of libraries: https://github.com/CodyReichert/awesome-cl

    Some companies, the ones we hear about: https://github.com/azzamsa/awesome-lisp-companies/

    and oh, some more editors besides Emacs or Vim: https://lispcookbook.github.io/cl-cookbook/editor-support.ht... (Atom/Pulsar support is good, VSCode support less so, Jetbrains one getting good, Lem is a modern Emacsy built in CL, Jupyter notebooks, cl-repl for a terminal REPL, etc)

  • Common Lisp: An Interactive Approach (1992) [pdf]
    7 projects | news.ycombinator.com | 10 Oct 2023
    check out the editor section, there's more than Emacs these days: https://lispcookbook.github.io/cl-cookbook/editor-support.ht...

    - https://github.com/CodyReichert/awesome-cl for libraries

    - https://www.classcentral.com/report/best-lisp-courses/#ancho...

    - a recent overview of the ecosystem: https://lisp-journey.gitlab.io/blog/these-years-in-common-li... (shameless plug, on HN: https://news.ycombinator.com/item?id=34321090)

  • Spinneret: A modern Common Lisp HTML generator
    8 projects | news.ycombinator.com | 26 Sep 2023
    More HTML generators for CL: https://github.com/CodyReichert/awesome-cl#html-generators-a... there are lispy ones (Spinneret), Django-like ones (Djula, I like it, easy to use and extend), HTML-based allowing for inline Lisp code (Ten), JSX-like ones (lsx, markup), and more.
  • Common Lisp JSON parser?
    2 projects | /r/lisp | 17 Sep 2023
    https://github.com/CodyReichert/awesome-cl is usually a good place to find recommendations. Jzon is pretty good.
  • All of Mark Watson's Lisp Books
    6 projects | news.ycombinator.com | 24 Jul 2023
    > obstacles add up

    I actually agree. It wasn't smooth for me to ship my first CL app. It's all better now (more tools, more documentation, more blog posts from several people, more SO questions and answers!).

    > performant

    SBCL is in the same ballpack of C, Rust or Java in many benchmarks.

    In this article series, the author writes the same program in CL, Rust and Java. In fact, he copy-pastes a PG snippet from 30 years ago. This snippet beats Rust and Java in LOC and speed. But, yeah, he wasn't writing super efficient Rust code, so after many discussions, pull requests and sweating, the Rust code became the most performant. https://renato.athaydes.com/posts/revisiting-prechelt-paper-... It didn't take work to make the CL code performant, more so for the Rust one ;)

    a benchmark after sb-simd vectorization: https://preview.redd.it/vn5juu36v2681.png?width=715&format=p... (https://www.reddit.com/r/Common_Lisp/comments/riedio/quite_a...)

    > good tools for networking, for writing concurrent or asynchronous code, for graphics,

    I refer the reader to https://github.com/CodyReichert/awesome-cl but yes, CL won't have the best libraries in some scenarii (GUI? Tk libs are good, we have Gtk4, a Qt5 library used in production© by a big player but difficult to install etc)

    > it doesn't give you a good package manager or means of distributing code

    Quicklisp is neat, with limitations, that can be addressed with Qlot, ql-https, or CLPM or the newest ocicl.

  • How to Understand and Use Common Lisp
    5 projects | news.ycombinator.com | 14 May 2023
    It's a good book!

    Modern companions would be:

    - the Cookbook: https://lispcookbook.github.io/cl-cookbook/ (check out the editors section: Atom/Pulsar, VSCode, Sublime, Jetbrains, Lem...)

    - https://github.com/CodyReichert/awesome-cl to find libraries

    Also:

    - https://stevelosh.com/blog/2018/08/a-road-to-common-lisp/

    - https://news.ycombinator.com/item?id=34321090 2022 in review

  • Why Lisp?
    17 projects | news.ycombinator.com | 7 May 2023
    > static strong typing

    Alright, here is it: https://github.com/coalton-lang/coalton/

    > small efficient native binaries

    The numbers are: with SBCL's core-compression, a web app with dozens on dependencies will weight ±30 to 40MB. This includes the compiler, the debugger, etc. Without core compression, we reach ±150MB.

    > The actor runtime?

    the actor library: https://github.com/mdbergmann/cl-gserver

    > couldn't find a way to make money with it. I suspect many other programmers are in my boat.

    Alright. Some do, that's life. Yes, some companies go with CL even in 2023 (https://lisp-journey.gitlab.io/blog/lisp-interview-kina/, they released https://github.com/KinaKnowledge/juno-lang lately; Feetr (finance): https://twitter.com/feetr_io/status/1587182923911991303)

    https://github.com/azzamsa/awesome-lisp-companies/

    > Give us an HTTP (1.x & 2.0) and WebSockets libraries

    How so? We have those libraries. HTTP/2: https://github.com/zellerin/http2/

    https://github.com/CodyReichert/awesome-cl

  • Peter Norvig – Paradigms of AI Programming Case Studies in Common Lisp
    8 projects | news.ycombinator.com | 5 May 2023
    https://leanpub.com/lovinglisp -- this one is great, and the first thing I recommend

    https://lispcookbook.github.io/cl-cookbook/ -- also great and up to date

    https://awesome-cl.com/ -- for anything else.

  • I'm considering moving from Clojure to Common Lisp
    8 projects | /r/lisp | 27 Mar 2023
    I also recommend https://github.com/CodyReichert/awesome-cl, a curated list of libraries.

What are some alternatives?

When comparing coalton and awesome-cl you can also consider the following projects:

awesome-lisp-companies - Awesome Lisp Companies

cl-str - Modern, simple and consistent Common Lisp string manipulation library.

hackett - WIP implementation of a Haskell-like Lisp in Racket

paip-lisp - Lisp code for the textbook "Paradigms of Artificial Intelligence Programming"

Petalisp - Elegant High Performance Computing

racket - The Racket repository

ocaml - The core OCaml system: compilers, runtime system, base libraries

phel-lang - Phel is a functional programming language that transpiles to PHP. A Lisp dialect inspired by Clojure and Janet.

clog - CLOG - The Common Lisp Omnificent GUI

cl-cookbook - The Common Lisp Cookbook