Skip to content
View benmkw's full-sized avatar
  • Germany
Block or Report

Block or report benmkw

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. p2r p2r Public

    python to rust converter

    Rust 3

  2. imnodes-rs imnodes-rs Public

    rust bindings to imnodes - imgui node editor

    Rust 35 13

  3. comptime_trie comptime_trie Public

    compile time trie generation for efficiently converting strings into enum members

    Rust 5 1

  4. zpng_rs zpng_rs Public

    Zpng_rs - Experimental Lossless Image Compressor (rust port)

    Rust 1

  5. microscheme microscheme Public

    wip rust implementation of scheme

    Rust 1

  6. pratt parser (and simple interpreter... pratt parser (and simple interpreter), handels both associativity and precedence
    1
    // ported from https://www.craftinginterpreters.com/compiling-expressions.html#a-pratt-parser
    2
    fn main() {
    3
        let input = "10*2+3";
    4
        assert_eq!(run(input), 10 * 2 + 3);
    5