https://github.com/developedby/algorithm-w-rs
Simple implementation of Hindley-Milner type inference in Rust
https://github.com/developedby/algorithm-w-rs
algorithm-w hindley-milner rust type-inference
Last synced: 11 months ago
JSON representation
Simple implementation of Hindley-Milner type inference in Rust
- Host: GitHub
- URL: https://github.com/developedby/algorithm-w-rs
- Owner: developedby
- License: gpl-3.0
- Created: 2024-08-12T20:26:22.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-20T17:52:43.000Z (almost 2 years ago)
- Last Synced: 2025-01-25T20:29:39.221Z (over 1 year ago)
- Topics: algorithm-w, hindley-milner, rust, type-inference
- Language: Rust
- Homepage:
- Size: 48.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# algorithm-w-rs
Simple implementation of Hindley-Milner type inference in Rust.
Implements Algorithm W, based on [https://github.com/mgrabmueller/AlgorithmW](https://github.com/mgrabmueller/AlgorithmW).
## Usage
You can compile and run it using Cargo:
```sh
# Run the CLI by calling `cargo run` and passing the file to parse as an argument.
cargo run --
```