klister VS rakudo

Compare klister vs rakudo and see what are their differences.

klister

an implementation of stuck macros (by gelisam)

rakudo

🦋 Rakudo – Raku on MoarVM, JVM, and JS (by rakudo)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
klister rakudo
7 55
122 1,700
- 0.1%
5.6 9.9
30 days ago 1 day ago
Haskell Raku
BSD 3-clause "New" or "Revised" License Artistic License 2.0
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.

klister

Posts with mentions or reviews of klister. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-05-06.
  • Interactive animations
    11 projects | /r/haskell | 6 May 2023
    Yeah, that project is pretty much at the bottom of my list, unfortunately. My top projects these days are mgmt, klister, recursion-schemes, and hint... And that's already too much!
  • Rust Tests Itself (Kind of!)
    2 projects | /r/rust | 30 Dec 2022
    case is a special form, ie a bit of core syntax, but, interestingly, data is not. (It is presumably a macro; typechecking is actually done as a part of macro expansion.) The syntax remains pretty uniform. Or, in Klister, type ascription is done via normal S-expression syntax with a form called the, as (the $type $expression); again, the syntax is uniform.
  • GHC Hacking
    1 project | /r/haskell | 4 Dec 2022
    Shameless plug: we don't have that problem in Klister, because our equivalent to main is a run macro which runs an IO action, and your alternate prelude can define its own run macro which expects an IO action from your alternate prelude.
  • What's the preferred way of getting powerful lisplike macros on Haskell?
    1 project | /r/haskell | 28 Sep 2022
    Klister is very similar to Hackett, but implemented in Haskell instead of Racket, and my most recent PR is from 20 days ago, if that's the metric which counts for you. Still very much of a WIP though.
  • How do you typecheck a macro?
    6 projects | /r/ProgrammingLanguages | 30 Sep 2021
    You might be interested in Klister: https://github.com/gelisam/klister
  • Using defmacro's &environment argument to implement Racket's hygienic macro expansion system?
    3 projects | /r/lisp | 2 Feb 2021
    I've now also found an implementation for klister, which is meant to interleave type checking with macro expansion.
  • Haskell doesn't have macros
    2 projects | /r/haskell | 29 Dec 2020
    In Klister, which already has Scheme-like macros and Haskell-like types (polymorphism, algebraic types and higher-kinded types, but not yet fancier types like RankNTypes and GADTs), our plan to get the best of both worlds (lexical syntax and typed ASTs) is to separate parsing from macro evaluation. That is, users write their programs using the surface syntax of s-expressions, parsers parse those into typed ASTs, and macros are typed by the type of the ASTs they receive as input and produce as output. At this stage this is only a research idea, I don't know if that's going to work out yet, but I hope so!

rakudo

Posts with mentions or reviews of rakudo. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-07.
  • Stability
    14 projects | dev.to | 7 Mar 2024
    Fix IO::Path::parent #4795: merged 2022-02-19 Add more IO::Path::parent tests #801: merged 2022-02-19 Change parent to always just remove the last element #4800: merged 2022-02-26 Change .parent behavior to "stupid" resolving #802: merged 2022-02-26
  • Moving printf formats forward
    2 projects | dev.to | 26 Jun 2023
    This then became the Formatter class. And since this was a completely new feature, it only became available for use by opting into the 6.e.PREVIEW language version. And then it went largely unnoticed and uncared for the next 1.5 year. As clearly the time wasn't right for it yet.
  • Shaking the RakuAST Tree
    1 project | dev.to | 30 May 2023
    The intended audience are those people willing to be early adopters of these exciting new features in the Raku Programming Language. The examples in this blog post will work in the next release of the Rakudo compiler (probably 2023.06), but are now already available in the bleeding edge version.
  • So why is there RakuAST in the first place?
    1 project | dev.to | 27 May 2023
    If you really want to look at this, you can find the code in src/Perl6/Grammar.nqp, src/Perl6/Actions.nqp and src/Perl6/World.nqp.
  • A practical example of RakuAST
    1 project | dev.to | 26 May 2023
    If you find this very interesting, you probably want to read the RakuAST README. And the actual source code of the RakuAST classes can be found in the same directory. And if you're really feeling adventurous and you have the Rakudo repository checked out, you can have a look at the generated NQP code in gen/moar/ast.nqp.
  • RakuAST for Early Adopters
    2 projects | dev.to | 24 May 2023
    Yes, it would. But until there was RakuAST, that was virtually impossible to do because there was no proper API for building ASTs. Nor was there an interface to execute those ASTs. And now that there is RakuAST, it is actually possible to do this. And there is actually already an implementation of that idea in the new Formatter class. Although this is definitely not intended as an entry point into grokking RakuAST.
  • What explains this difference in behavior?
    1 project | /r/rakulang | 12 Feb 2023
    I have opened one. https://github.com/rakudo/rakudo/issues/5205.
  • Why isn't sign() defined for Complex numbers?
    2 projects | /r/rakulang | 3 Feb 2023
    Will Coleda has made a Pull Request
  • Building Rakudo on JVM backend fails: guarantee(requested_word_size <= chunklevel::MAX_CHUNK_WORD_SIZE) failed: Requested size too large (561049) - max allowed size per allocation is 524288
    1 project | /r/rakulang | 22 Dec 2022
    There's an issue pertaining to this. This is something I'd like to resolve, but I'm unsure on how to better debug this to see if it really is the deserialization of a setting file triggering it. JDK 11 should at least be capable of building Rakudo, but being an experimental backend people don't always align with MoarVM immediately, I can't make any guarantees about tests. You may be disappointed in its performance at the moment.
  • Resources and advice
    1 project | /r/ProgrammingLanguages | 18 Dec 2022
    (NB. While the PL is just a toy (and just a tiny bit of the toy too), the tech is actually industrial strength, used to power the production Raku compiler, which is written in Raku using its grammar construct. Starting easy doesn't mean you can't go far. Quite the opposite in fact -- you can go as far as you want.)

What are some alternatives?

When comparing klister and rakudo you can also consider the following projects:

aith - [Early Stages] Low level functional programming language with linear types, first class inline functions, levity polymorphism and regions.

instaparse

unseemly - Macros have types!

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

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

enso - Hybrid visual and textual functional programming.

perl5 - 🐪 The Perl programming language

srfi-46 - SRFI 46 for Common Lisp: Basic Syntax-rules Extensions

roast - 🦋 Raku test suite

Squid - Squid – type-safe metaprogramming and compilation framework for Scala

langs