Skip to content

Comment on Learning BASIC Like It's 1983 (2018)parent

Comments

Nah, the proper way it's SICP wich Chicken scheme. Much better to learn about CS theory without having to deal with C and memory. If you want to play with C, UNIX and virtual memory, get The C programming language 2nd ed and Advanced Programming in the Unix Environment books.

Now, on Scheme:

    sudo chicken-install srfi-203
    sudo chicken-install srfi-216

    cat ~/.csirc
    (import scheme)
    (import (srfi 203))
    (import (srfi 216))
It has a game engine written in Scheme called Hypergiant bound to OpenGL and epoxy which is really fun to thinker with.
    sudo chicken-install hypergiant
To compile stuff:
    csc -L -lGL example.scm
On assembler, get some NES emulator and run 6502 code on it with Pasmo and some helping libraries to initialize the most common rutines.

6502 it's much easier than the Intel clusterfuck.

Either that or RISC-V.

AboutSource Built by g1lg1l

Hackerly is an independent reader for Hacker News, built on the public HN API. Not affiliated with Y Combinator.