Other articles

  1. Day 25/100: Accepting Input

    Today I made some strides in getting this to accept input. It's starting to look like a game now:

    #lang racket
    
    #| Init Block |#
    
    (define tiles '())
    (define die1 0)
    (define die2 0)
    (define turn-number 1)
    (define took-turn #f)
    (define end-of-game #f)
    
    (define (start-game)
    (set! tiles '(1 2 3 4 5 6 …
    read more
  2. Day 24/100: Small Steps

    Did a little bit more on my presentation, but nothing earth-shattering. Read some more of The Little Schemer and finally realized that the book is about taking small concepts to build bigger programs. Unfortunately it reads like some form of cult worksheet to brainwash someone into a new way of …

    read more

links

social