gleam VS ponyc

Compare gleam vs ponyc and see what are their differences.

gleam

⭐️ A friendly language for building type-safe, scalable systems! (by gleam-lang)

ponyc

Pony is an open-source, actor-model, capabilities-secure, high performance programming language (by ponylang)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
gleam ponyc
95 61
14,761 5,594
60.0% 0.5%
9.9 9.3
6 days ago 10 days ago
Rust C
Apache License 2.0 BSD 2-clause "Simplified" License
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.

gleam

Posts with mentions or reviews of gleam. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-07.
  • Release Radar • March 2024 Edition
    14 projects | dev.to | 7 Apr 2024
    Want a friendly language for building safe systems at scale? Gleam is here for you. It features modern and familiar syntax, that's reliable and scalable. Gleam runs on an Erlang virtual machine, and can run plenty of concurrent tasks. It comes with a compiler, build tool, formatter, editor integrations, and package manager all built in so you can get started right away. Congrats to the team on shipping your first major version 🙌.
  • The Current State of Clojure's Machine Learning Ecosystem
    4 projects | news.ycombinator.com | 7 Apr 2024
    While I love Clojure, I have to agree about tooling. I recently started using Gleam* and was impressed at how easy it was to get up and running with the CLI tool. I think this is an important part of getting people to adopt a language.

    * https://gleam.run/

  • Show HN: I open-sourced the in-memory PostgreSQL I built at work for E2E tests
    9 projects | news.ycombinator.com | 7 Apr 2024
    If you use languages that compile to WASM (such as Gleam https://gleam.run), and can also run Postgres via WASM, then it opens very interesting offline scenarios with codebases which are similar on both the client and the server, for instance.
  • Why the number of Gleam programmers is growing so fast?
    1 project | dev.to | 26 Mar 2024
    Recently, Gleam has gained more popularity, and a lot of developers (including me) are learning it. At the time of this writing, it has exceeded 14k stars on GitHub; it grew really fast for the last month.
  • Cranelift code generation comes to Rust
    5 projects | news.ycombinator.com | 18 Mar 2024
  • Gleam v1.0.0
    1 project | news.ycombinator.com | 4 Mar 2024
  • Gleam has a 1.0 release candidate
    1 project | news.ycombinator.com | 10 Feb 2024
  • Welcome to the Gleam Language Tour
    1 project | news.ycombinator.com | 20 Jan 2024
    Oh, strange that github had a date of 2016 on this one: https://github.com/gleam-lang/gleam/issues/2

    I was just going by that, though I do remember checking out gleam 5 years ago or so.

    Re: macros, I really do think they’re a big deal and all the other newer languages I’ve used, such as Rust have some kind of macros or powerful meta programming features.

    For older languages, a few, like Ruby have enough meta programmability to make nice DSLs, but many others don’t. Given the choice, I’d much rather have Elixir/Clojure style macros than other meta-programming facilities I’ve seen so far.

  • Inko Programming Language
    4 projects | news.ycombinator.com | 14 Nov 2023
    I had been only following this language with some interest, I guess this was born in gitlab not sure if the creator(s) still work there. This is what I'd have wanted golang to be (albeit with GC when you do not have clear lifetimes).

    But how would you differentiate yourself from https://gleam.run which can leverage the OTP, I'd be more interested if we can adapt Gleam to graalvm isolates so we can leverage the JVM ecosystem.

  • Switching to Elixir
    11 projects | news.ycombinator.com | 9 Nov 2023
    I don't think the implementation itself is at fault, but yes, I do think that the design of dialyzer makes it an (at times) faulty type checker. The unfortunate reality of a type checker that fails sometimes is that it makes it mostly useless because you can never trust that it'll do the job.

    To be clear, I've had it fail in a function where I've literally specced that very function to return a `binary` but I'm returning an `integer` in one of the cases. This is a very shallow context but it can still fail. Now add more functions, maybe one more `case`.

    I think an entire rethink of type checking on the BEAM had to be done and that's why eqWalizer[0] was created and why Elixir is looking to add an actual sound, well-developed type checker. Gleam[1] I would assume is just a Hindley-Milner system so that's completely solid. `purerl`[2] is just PureScript for the BEAM so that's also Hindley-Milner, meaning it's solid. `purerl` has some performance issues caused by it compiling down to closures everywhere but if you can pay that cost it's actually pretty fantastic. With that said my bet for the best statically typed experience right now on the BEAM would be `gleam`.

    0 - https://github.com/WhatsApp/eqwalizer

    1 - https://gleam.run

    2 - https://github.com/purerl/purerl

ponyc

Posts with mentions or reviews of ponyc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-06.
  • Old Version
    1 project | /r/PHPhelp | 11 Dec 2023
  • The problem with general purpose programming languages
    1 project | news.ycombinator.com | 26 Oct 2023
    For example, the actor's model is not used by a lot of languages, Pony (https://www.ponylang.io/) and Elixir are the only ones that I know, but they address the concurrency problem quite well, while it's a pain to deal with in other languages at large scale.
  • Found a language in development called Vale which claims to be the safest AOT compiled language in the World (Claims to beSafer than Rust)
    3 projects | /r/rust | 6 Jun 2023
    And that last point is critical. If the language flatly can't represent some concepts it uses, they have to be implemented somewhere else. I had a similar discussion with a proponent for Pony once- the language itself is 100% safe, and fully dependent on C for its runtime and data structures. One of Rust's core strengths is being able to express unsafe concepts, meaning the unsafe code can expose a safe interface that accurately describes its requirements rather than an opaque C ABI. Vale doesn't seem to do that.
  • The Rust I wanted had no future
    7 projects | news.ycombinator.com | 5 Jun 2023
    "Exterior iteration. Iteration used to be by stack / non-escaping coroutines, which we also called "interior" iteration, as opposed to "exterior" iteration by pointer-like things that live in variables you advance. Such coroutines are now finally supported by LLVM (they weren't at the time) and are actually a fairly old and reliable mechanism for a linking-friendly, not-having-to-inline-tons-of-library-code abstraction for iteration. They're in, like, BLISS and Modula-2 and such. Really normal thing to have, early Rust had them, and they got ripped out for a bunch of reasons that, again, mostly just form "an argument I lost" rather than anything I disagree with today. I wish Rust still had them. Maybe someday it will!"

    I remember that one. The change was shortly after I started fooling with Rust and was major. Major as in it broke all the code that I'd written to that point.

    "Async/await. I wanted a standard green-thread runtime with growable stacks -- essentially just "coroutines that escape, when you need them too"."

    I remember that one, too; it was one of the things that drew me to the language---I was imagining something more like Pony (https://www.ponylang.io/).

    "The Rust I Wanted probably had no future, or at least not one anywhere near as good as The Rust We Got."

    Almost certainly true. But The Rust We Got is A Better C++, which was never appealing to me because I never liked C++ anyway.

  • How long until Rust becomes mandatory, and use of any other language opens the developer up to Reckless Endangerment charges
    1 project | /r/programmingcirclejerk | 20 May 2023
    Pony or bust.
  • Universal parameter passing semantics
    1 project | /r/ProgrammingLanguages | 10 May 2023
    If you have a value in mutable storage, and want to treat it as an immutable parameter without copying it first, you will need to provide some way to guarantee that it won't be mutated while being treated as immutable! There doesn't seem to be a definitive best way to do that (although the likes of Pony make a try at it).
  • Virtual Threads Arrive in JDK 21, Ushering a New Era of Concurrency
    8 projects | news.ycombinator.com | 12 Apr 2023
    The love child of Erlang and Rust exists already: Pony.

    https://www.ponylang.io

    It really is the best of both languages... unfortunately, the main supporter of Pony seems to have stopped using it in favour of Rust though :D.

    But if that's really what you want, Pony is your language. It definitely deserves more love.

  • Programming language rule
    1 project | /r/196 | 30 Mar 2023
  • Why Turborepo is migrating from Go to Rust – Vercel
    7 projects | /r/golang | 8 Mar 2023
    You can actually try to have a magic language which "does not ignore decades of PL research" but you are likely to get either something broken or a project that is likely not going to release in our lifetime.
  • Show HN: Ractor – a Rust-based actor framework with clusters and supervisors
    4 projects | news.ycombinator.com | 15 Feb 2023
    Never a bad time to plug Pony lang[1] - a safety-oriented actor-model language. In addition to the numerous safety guarantees, you also get a beautiful syntax and automatic memory management. Really a great language that often gets overshadowed by Rust's hype-turfing.

    [1]: https://www.ponylang.io/

What are some alternatives?

When comparing gleam and ponyc you can also consider the following projects:

are-we-fast-yet - Are We Fast Yet? Comparing Language Implementations with Objects, Closures, and Arrays

Halide - a language for fast, portable data-parallel computation

web3.js - Collection of comprehensive TypeScript libraries for Interaction with the Ethereum JSON RPC API and utility functions.

prolog-to-minizinc - A Prolog-to-MiniZinc translator

Rustler - Safe Rust bridge for creating Erlang NIF functions

Phoenix - wxPython's Project Phoenix. A new implementation of wxPython, better, stronger, faster than he was before.

nx - Multi-dimensional arrays (tensors) and numerical definitions for Elixir

Nim - Nim is a statically typed compiled systems programming language. It combines successful concepts from mature languages like Python, Ada and Modula. Its design focuses on efficiency, expressiveness, and elegance (in that order of priority).

hamler - Haskell-style functional programming language running on Erlang VM.

mrustc - Alternative rust compiler (re-implementation)

otp - 📫 Fault tolerant multicore programs with actors

tab-rs - The intuitive, config-driven terminal multiplexer designed for software & systems engineers