letlang

Functional language with a powerful type system. (by linkdd)

Letlang Alternatives

Similar projects and alternatives to letlang

  • go

    2,079 letlang VS go

    The Go programming language

  • zig

    818 letlang VS zig

    General-purpose programming language and toolchain for maintaining robust, optimal, and reusable software.

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • Svelte

    635 letlang VS Svelte

    Cybernetically enhanced web apps

  • Nim

    348 letlang VS 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).

  • sdk

    308 letlang VS sdk

    The Dart SDK, including the VM, dart2js, core libraries, and more.

  • jq

    Discontinued Command-line JSON processor [Moved to: https://github.com/jqlang/jq] (by stedolan)

  • TablaM

    The practical relational programing language for data-oriented applications

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • clog

    150 letlang VS clog

    CLOG - The Common Lisp Omnificent GUI

  • gleam

    97 letlang VS gleam

    ā­ļø A friendly language for building type-safe, scalable systems!

  • lunatic

    Lunatic is an Erlang-inspired runtime for WebAssembly

  • Pluto.jl

    78 letlang VS Pluto.jl

    šŸŽˆ Simple reactive notebooks for Julia

  • lobster

    The Lobster Programming Language

  • dafny

    Dafny is a verification-aware programming language

  • ergo

    An actor-based Framework with network transparency for creating event-driven architecture in Golang. Inspired by Erlang. Zero dependencies.

  • Glimmer

    DSL Framework consisting of a DSL Engine and a Data-Binding Library used in Glimmer DSL for SWT (JRuby Desktop Development GUI Framework), Glimmer DSL for Opal (Pure Ruby Web GUI), Glimmer DSL for LibUI (Prerequisite-Free Ruby Desktop Development GUI Library), Glimmer DSL for Tk (Ruby Tk Desktop Development GUI Library), Glimmer DSL for GTK (Ruby-GNOME Desktop Development GUI Library), Glimmer DSL for XML (& HTML), and Glimmer DSL for CSS

  • prusti-dev

    A static verifier for Rust, based on the Viper verification infrastructure.

  • protoactor-go

    Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin

  • cells

    6 letlang VS cells

    A Common Lisp implementation of the dataflow programming paradigm (by kennytilton)

  • magrittr

    Improve the readability of R code with the pipe

  • zigself

    An implementation of the Self programming language in Zig

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better letlang alternative or higher similarity.

letlang reviews and mentions

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
  • A note from our sponsor - InfluxDB
    www.influxdata.com | 10 May 2024
    Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality. Learn more ā†’

Stats

Basic letlang repo stats
12
157
7.9
3 months ago

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com