Skip to content
View Superstar64's full-sized avatar
Block or Report

Block or report Superstar64

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. aith aith Public

    [Early Stages] Low level functional programming language with linear types, first class inline functions, levity polymorphism and regions.

    Haskell 60

  2. sky sky Public

    Lambda Calculus to Ski compiler and runtime.

    Haskell 5

  3. world_gen world_gen Public

    A Minecraft Terrain Generator

    D 1 1

  4. jegc jegc Public

    Javascript eval Graphing calculator

    JavaScript

  5. soft_render soft_render Public

    a 3d software renderer

    C++ 3

  6. Typesafe Tagged Union in Java using ... Typesafe Tagged Union in Java using Scott Encoding
    1
    // public domain
    2
    import java.util.function.Function;
    3
    interface Either<A, B> {
    4
        <C> C match(Function<A, C> left, Function<B, C> right);
    5
    }