1 Getting Started
1.1 Installation
(harebrained scheme) is currently distributed as a guix package inside its source code repository.
1.2 First steps
First we will start a guix shell with the required packages to work in a chez-scheme environment:
% guix shell -f guix.scm chez-scheme chez-srfi |
% scheme |
Inside chez-scheme we can then load the complete (harebrained scheme) package and start working:
> (import (harebrained scheme)) |
> (bioseq->string (dna-reverse-complement (make-bioseq "ACTG"))) |
"CAGT" |