rust-langdev
scala3-example-project
Our great sponsors
rust-langdev | scala3-example-project | |
---|---|---|
9 | 3 | |
657 | 325 | |
- | 0.9% | |
2.8 | 4.7 | |
17 days ago | 25 days ago | |
Scala | ||
The Unlicense | Creative Commons Zero v1.0 Universal |
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.
rust-langdev
-
Tools for creating a programming language in rust
Someone showed me this repo with a bunch of lang dev libraries a while ago. I haven't done anything with it personally, but it may be of interest to you https://github.com/Kixiron/rust-langdev
- Rust libraries to build a compiler for my language?
- Good textbook with implementations of OO type system?
- How to write a compiler or interpreter in rust
-
Make A Langage
https://github.com/Kixiron/rust-langdev for additional resources and libraries
-
Can i use rust to write my compiler??
Absolutely. For a non-exhaustive list of other languages written in Rust, there is https://github.com/alilleybrinker/langs-in-rust. If you are looking for libraries to help you along the way, check out https://github.com/Kixiron/rust-langdev.
-
Does anyone know if scala parser combinators library works for scala 3?
not sure if i’m really convinced of this, rustc being written in rust means there are a lot of great language dev abstractions that have made their way to the ecosystem. particularly for a language frontend, i would argue rust provides a fantastic experience: there are dedicated lexer generators, parsers of all sorts, including some with great error messages out of the box, several variations on rustc-style diagnostic reporting, among others. in fact, as far as frontend implementation, i would argue rust is significantly easier to get off of the ground with than haskell, which has a steep learning curve for some of the really powerful libraries most useful for working with large AST datatypes, and some frankly crusty tools as the “best in class” for lexer and parser generation. granted, parser combinators in haskell are a bit more convenient than in rust, but i think the language dev story as a whole for rust is really solid.
scala3-example-project
-
Issues setting up Scala 3 on Windows w/Coursier
However, using the scala/scalac shell scripts directly is rarely what you want in practice. I recommend either setting up a project using sbt (you can start from the template at https://github.com/scala/scala3-example-project) or using scala-cli.
- What are resources to learn/get up to speed with Scala3 for experienced Scala2 dev?
-
Does anyone know if scala parser combinators library works for scala 3?
Only 1.2.0-M1 has been published for Scala 3 so you need to use that version: https://repo1.maven.org/maven2/org/scala-lang/modules/scala-parser-combinators_3.0.0-M3/ (or fallback to the Scala 2 version using withDottyCompat, cf https://github.com/scala/scala3-example-project#getting-your-project-to-compile-with-dotty)
What are some alternatives?
inkwell - It's a New Kind of Wrapper for Exposing LLVM (Safely)
cats-parse - A parsing library for the cats ecosystem
scala-3-crash-course - Scala 3 workshop presenting the top new features of the language.
scala-3-migration-guide - The Scala 3 migration guide for everyone.
dotty-cps-async - experimental CPS transformer for dotty
pratt - Pratt parser written in Rust
codespan - Beautiful diagnostic reporting for text-based programming languages.
langs-in-rust - A list of programming languages implemented in Rust, for inspiration.
ansicon - Process ANSI escape sequences for Windows console programs.
cranelift-jit-demo - JIT compiler and runtime for a toy language, using Cranelift
plzoo - Programming Languages Zoo
starlark-rust - A Rust implementation of the Starlark language