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

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  1. p2r p2r Public

    python to rust converter

    Rust 4

  2. imnodes-rs imnodes-rs Public

    rust bindings to imnodes - imgui node editor

    Rust 50 18

  3. zpng_rs zpng_rs Public

    Zpng_rs - Experimental Lossless Image Compressor (rust port)

    Rust 1

  4. lang lang Public

    pratt parser for arithmetic expressions, may be extended into a c like language implementation

    Rust 3

  5. 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
    
                  
  6. build_cpython.py build_cpython.py
    1
    # ported from https://github.com/allyourcodebase/cpython
    2
    
                  
    3
    #!/usr/bin/env python3
    4
    
                  
    5
    import argparse