mech VS letlang

Compare mech vs letlang and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
mech letlang
5 12
200 157
2.0% -
7.0 7.9
6 months ago 3 months ago
Rust Rust
Apache License 2.0 MIT 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.

mech

Posts with mentions or reviews of mech. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-24.
  • Reactive Programming Without Functions
    2 projects | news.ycombinator.com | 24 Mar 2024
    There's also https://github.com/mech-lang/mech which is a sort of descendant of Eve https://witheve.com/ . That too seems to be getting close to hiatus. It's a bit of a shame since it seems like quite a nice paradigm for some stuff like GUIs, interactive stuff, and discrete event simulation, but I suppose the paradigm is both a bit obscure and different enough from everything else that it becomes a "boil the ocean" situation where one or a few people try and hack away but aren't really able to get much traction and eventually tired themselves out.
  • What features would you want in a new programming language?
    5 projects | /r/ProgrammingLanguages | 3 Jan 2023
    You should take a look at the language Iā€™m developing, Mech: https://github.com/mech-lang/mech
  • How do you think of concurrency and parallelism and what would your dream syntax be for it?
    2 projects | /r/ProgrammingLanguages | 6 Dec 2022
    I'm working on a language called Mech (github.com/mech-lang/mech) that is semantically parallel and asynchronous first. You can write something like this:
  • Mech Lang Spring Update: On the Road Toward Beta!
    1 project | /r/ProgrammingLanguages | 19 May 2022
    Hi everyone. I've posted here a couple times about my language Mech, which you can find here. I've just put together an update which I hope this community will find interesting!
  • Frustration: One Year with R
    10 projects | news.ycombinator.com | 22 Mar 2022
    > HN readers - do you have an "up and coming" language that you think has better structured the fundamentals from R, that you hope will someday have enough capabilities you can use it instead of R?

    Hope is the operative word here!

    I'm writing a language to compete in this area. It's called Mech and I'll be releasing the first beta in October. You can think of it like Matlab + Excel. It's very fast, has default-parallel semantics for operators and functions, and supports full interactive coding with no startup/compilation latency issues. It's meant for robots, but I've also designed it to be a better Matlab, and I think it should take on R handily. Fair warning, it's public alpha now so error messages are sparse and the happy path is narrow.

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

letlang

Posts with mentions or reviews of letlang. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-07.
  • Letlang ā€” Roadblocks and how to overcome them - My programming language targeting Rust
    2 projects | /r/programming | 7 Jun 2023
    That works for any types (except the functional types), and even the generic ones. During code generation, I create structs that implement the Type trait.
  • A new milestone for Letlang (targeting Rust) - Effect Handlers
    2 projects | /r/rust | 13 Mar 2023
    As stated on the website ( https://letlang.dev ), Letlang is a general-purpose language.
  • Writing a simple Lisp interpreter in Rust
    2 projects | news.ycombinator.com | 4 Mar 2023
    Author here, the article is more about how Rust and its ecosystem are nice tools for language designers rather than the beauty of Lisp.

    The crates listed in that article are the ones I use for my compiler: https://letlang.dev

    Lisp was only chosen as a way to demonstrate the power of those crates and Rust features. A kind of way of justifying my choices for Letlang.

    It's not "you should do it like this" but "you can do it like this".

  • Ask HN: Possible? Faster than C, simpler than Python, safer than Rust
    5 projects | news.ycombinator.com | 3 Mar 2023
    "Faster than C", I saw people write C code slower than a Python equivalent. So I have to admit, I don't know what it means for a language to be fast, because it depends on the algorithm being implemented.

    ---

    "simpler than Python", what does "simple" mean?

    Simple design? Python's design is very complex (take a look at "Crimes with Python's pattern matching" < https://www.hillelwayne.com/post/python-abc/ > for example), on the other hand, assembly languages, or Lisp, or Forth, have a very simple design.

    Simple as in "easy to use"? Rust is easy, write code, fix what the compiler tells you you did wrong. Joke aside, Go is quite easy to use and while I personally don't like this language, I get why it replaced Python in a lot of use cases.

    Also, once you get used to the OTP framework, Erlang/Elixir/Gleam/any beam language are quite easy to use and have less footguns than Python.

    ---

    "safer than Rust" is too vague. Is it memory safety? type safety? thread safety? cosmic ray safety? A mix of all of that?

    Let's guess you meant "memory safety". All languages with a Garbage Collector are "memory safe".

    ---

    On a semi-unrelated note, I've been working on https://letlang.dev

    It's a language inspired by Erlang/Elixir (same concurrency model) that compiles to Rust code (the runtime use tokio). It is immutable, have no Garbage Collector thanks to Rust semantics, and dynamically typed.

    I haven't run any benchmark (it's not even finished, I've been working on the specification before continuing the implementation), but I guess it could be slower than a rock.

    ---

    For some recommendations, have you looked at Zig? Nim? Hare?

      https://ziglang.org/
  • Syntax for defining algebraic data types
    4 projects | /r/ProgrammingLanguages | 3 Feb 2023
    In my language (Letlang), I use the keyword class with structural pattern matching and optionally a predicate. Types (or rather, classes) can be combined with logical operators &, |, !:
  • Erlang's not about lightweight processes and message passing
    9 projects | news.ycombinator.com | 27 Jan 2023
    Not sure this is what GP is talking about but to implement the actor model in https://letlang.dev I use tokio.
  • Features you've removed from your lang? Why did you put them in, why did you take them out?
    3 projects | /r/ProgrammingLanguages | 6 Jan 2023
    In the early drafts of Letlang, I had the goal to add an equation solver. I got rid of that because:
  • What features would you want in a new programming language?
    5 projects | /r/ProgrammingLanguages | 3 Jan 2023
    I'm working on a programming language inspired by erlang and which compiles to Rust: https://letlang.dev
  • Six programming languages Iā€™d like to see
    28 projects | news.ycombinator.com | 13 Jul 2022
    For a contract based language and a "really dynamically typed language", I'm working on https://letlang.dev

    And it's because I haven't thought yet about how to do static type checking with such a feature.

    I haven't got any time to work on it in the past few weeks, and I'm the only dev (would really love some help). So, it will be ready when it will be ready :P

  • Hello Letlang! My programming language targeting Rust
    1 project | /r/ProgrammingLanguages | 16 May 2022
    I use Rust generators to implement them, a rudimentary example: https://github.com/linkdd/letlang/blob/main/letlang_runtime/src/utils/entrypoint.rs

What are some alternatives?

When comparing mech and letlang you can also consider the following projects:

cheatsheets - Posit Cheat Sheets - Can also be found at https://posit.co/resources/cheatsheets/.

zigself - An implementation of the Self programming language in Zig

Frustration-One-Year-With-R - An extremely long review of R.

scenebuilder - Scene Builder is a visual, drag 'n' drop, layout tool for designing JavaFX application user interfaces.

ggplot2-book - ggplot2: elegant graphics for data analysis

cells - A Common Lisp implementation of the dataflow programming paradigm

COVID-19 - Plots and analysis relating to the pandemic

power-fx-host-samples - Samples for hosting Power Fx engine.

tidyr - Tidy Messy Data

impulse - Impossible Dev Tools for React and Tailwind

forcats - šŸˆšŸˆšŸˆšŸˆ: tools for working with categorical variables (factors)

halo - An experimental graph-based meta programming language