Skip to content
View LuckyKoala's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report LuckyKoala

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
LuckyKoala/README.md

LuckyKoala's github stats Top Langs

Pinned Loading

  1. LittleProject LittleProject Public

    Little project for some fun.

    Java 1

  2. Mimosa Mimosa Public

    A little compiler for subset language of Lisp.

    Java

  3. LiveScreep LiveScreep Public

    A codebase for Screeps game.

    JavaScript 6

  4. MinecraftPlugin MinecraftPlugin Public

    24款Minecraft服务端插件

    Java 1

  5. SICP 4.1,Lisp解释器实现(包含习题解答) SICP 4.1,Lisp解释器实现(包含习题解答)
    1
    (define (eval exp env) ((analyze exp) env))
    2
    
                  
    3
    (define (analyze exp)
    4
      (cond ((self-evaluating? exp)
    5
             (analyze-self-evaluating exp))
  6. Abou Seven Languages In Seven Weeks ... Abou Seven Languages In Seven Weeks Io,Day 2. Use js as extension name so the code can be highlighted.
    1
    //For 3.3
    2
    //Create a nested list
    3
    li := list(1,2,3,list(3,4),"str")
    4
    //Flatten and only operate on Number and then sum them
    5
    List deepsum := method(