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

Block or report profound7

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 Loading

  1. moon-core moon-core Public

    moon-core library for haxe

    Haxe 43 7

  2. moon-ai moon-ai Public

    Artificial intelligence library. Neural network.

    Haxe 18 1

  3. moon-peg moon-peg Public

    PEG packrat parser with direct and indirect left recursion support

    Haxe 11 5

  4. profound7.github.io profound7.github.io Public

    https://profound7.github.io/

    HTML

  5. spinehx spinehx Public

    Forked from nitrobin/spinehx

    SpineHx is Haxe/OpenFL/NME port of spine-libgdx skeletal animation runtime. [INACTIVE]

    Java 1

  6. Transforming a function into a gener... Transforming a function into a generator function
    1
    // original function
    2
    
                  
    3
    function fib():Iterator<Int> {
    4
        var a = 0;
    5
        var b = 1;