Solutions on SICP
-
Go to projects directory
$ cd src/exercises/github-actions-for-racket
-
Install dependencies
$ raco pkg install --auto --batch
-
Execute file in interactive mode:
$ racket -it fibonacci.rkt # run in interactive mode > (enter! "fibonacci.rkt") # load module > (stream->list (stream-take (fibs) 10)) '(1 1 2 3 5 8 13 21 34 55)
-
Run tests
$ cd src/exercises/github-actions-for-racket $ raco test fibonacci.rkt
- Books
- Online Interpreter: https://repl.it/languages/Scheme
- Hexlet course: https://ru.hexlet.io/courses/sicp