HNNewShowAskJobs
Built with Tanstack Start
The WebRacket language is a subset of Racket that compiles to WebAssembly(github.com)
107 points by mfru 4 days ago | 21 comments
  • soegaard3 hours ago

    Hi All,

    It's still early days for the WebRacket project.

    Racket is a huge language, so be patient wrt features.

    To keep motivation high I decided to implement a subset that can be used to built practical applications - and then extend the supported features from there. Hopefully, this strategy will also lead to some early adopters that can help me prioritize which features to add.

    Some features are simply "more of the same". In this category falls more types of hash tables. Supporting bignums are also a matter of just doing it.

    Other features require more work. I have already done some work on implementing modules in terms of linklets. When linklets/modules work, we can reuse the existing implementation of regular expressions.

    Adding continuation marks and delimited continuations require adding a CPS-pass. This is certainly doable. Postponing it has been great though. Having a direct style compiler means the generated code follows the structure in the input source code. And that makes debugging easier. Now that bugs have become rarer, it makes sense to look at CPS.

    Enjoy.

    /Jens Axel

  • publicdebates5 hours ago

    I read the WASM spec and became somewhat of an expert in it for the purpose of eventually designing a low-level language specifically for wasm, to be the most efficient and lowest-level language you could possibly have for wasm, and then gradually add high level concepts into it to make it more convenient. Kind of like building C on top of asm, and then gradually evolving it into C++. That project never came about though due to lack of community interest and time on my part, but I like seeing languages that take a fresh look at how to integrate with wasm using novel techniques to aim for maximal efficiency.

    • koolala13 minutes ago |parent

      A SIMD ECS language would probably be that today and be more modern than C.

    • Imustaskforhelp4 hours ago |parent

      > to be the most efficient and lowest-level language you could possibly have for wasm, and then gradually add high level concepts into it to make it more convenient. Kind of like building C on top of asm, and then gradually evolving it into C++. That project never came about though due to lack of community interest and time on my part, but I like seeing languages that take a fresh look at how to integrate with wasm using novel techniques to aim for maximal efficiency.

      I wonder how much efficient would such wasm be compared to native itself theoretically?

      I really like libriscv as well, what are your thoughts on libriscv and now the recent project created by legendary fwsgonzo about looongarch.

      Although I would say that libriscv/loongarch are more focused on trying to start the fastest as much as possible instead of pure performance (for which if atleast for the purpose of sandboxing, fwsgonzo has also created tinykvm which is really quite close to native performance)

  • gcr5 hours ago

    Is there any shared lineage between this and Whalesong, a previous Racket->JS compiler?

    Of course both projects have the same maintainer if I recall, Jens Axel Søgaard is a rockstar :)

    • neilv5 hours ago |parent

      Jens Axel Søgaard is cool and involved in many things. We collaborated on SICP support.

      Original developer of Whalesong was Danny Yoo. https://www.hashcollision.org/whalesong/

      There was also this: https://docs.racket-lang.org/racketscript/

      Dave Herman worked on various JS-related libraries for Racket (or PLT Scheme) before he was involved with Rust.

      • gcr4 hours ago |parent

        ah that's right! apologies

    • soegaard3 hours ago |parent

      No, there is nothing in common with Whalesong.

      Whalesong used the built-in bytecode compiler and compiled the bytecode to JavaScript. Reusing the bytecode compiler is in principle a good idea - but each time the bytecodes are changed, Whalesong needs to be updated.

      And after the move to Chez Scheme as backend, the bytecode compiler is no longer a part of the main compilation path.

  • noelwelsh7 hours ago

    I love this. Racket is the future we were promised.

    • neilv5 hours ago |parent

      Speaking of prolific Racketeers... Noel! Just an hour ago, on a walk, I was thinking, "I should work through that one LLM book, and implement it in Racket." (But have started job-hunting, so will probably be Python.)

      • dunham4 hours ago |parent

        Which one LLM book?

        I've got so much other stuff I'd rather learn and code I'd rather write (C/wasm backend for my language), but I've also started job hunting and probably should understand how this latest fad works. Neural networks have long been on my todo list anyway.

  • apitman6 hours ago

    Hoot is another interesting one: https://spritely.institute/hoot/

  • titzer6 hours ago

    I noticed the --expose-gc. Does this mean it's using the (now standardized) Wasm GC feature?

  • dfajgljsldkjag7 hours ago

    It is interesting to see another language target WebAssembly especially one like Racket. The fact that it compiles to a subset of the language limits its utility right now. I think it is a neat proof of concept but it needs full language support.

    • gcr5 hours ago |parent

      For folks curious about the supported language subset, here's a summary:

      - Modules aren't implemented yet, but are high on the list

      - Continuation-based control flow isn't supported yet, including break and promises. Tail calls are supported though.

      - No support for complex numbers, bignums, weak hashtables, immutable hashtables, prefab structs, regexp, or file I/O support

      Most of the rest of racket/base should work, according to the README. There's also a FFI for javascript, including bindings for Math, DOM, Canvas, MathJax, XTermJS, and JSXGraph. Overall feels like you can use most of the language right now unless you need odd Racket-isms or call/cc.

    • d_philla6 hours ago |parent

      check out grain! https://grain-lang.org/

    • volemo5 hours ago |parent

      As far as I know compiling full Racket to WASM is impossible because of continuations.

      • soegaard3 hours ago |parent

        I wouldn't say compiling full Racket to WebAssembly is impossible. But I think the consensus is that one can't add a WebAssembly backend to the compiler in the same manner as the x86 and arm backends. These backends manipulate the stack in ways WebAssembly prohibits.

        This forces an Racket implementation to make continuations explicit. And that will most likely mean a WebAssembly backend will be slower than the native backends.

      • kg4 hours ago |parent

        You could probably model continuations using the wasm GC feature since you can then pass around function references and strongly typed continuation objects, but making it work certainly wouldn't be trivial.

  • KarenDaBass5 hours ago

    Is a (Web)Racket engineer a racketeer?

    • gcr5 hours ago |parent

      They're certainly a schemer. :-)