Sha256: 2fb8d1c0fb1958f12d6aa9cd5735e8e879a9600540ca77a370b3f3e4e85b1ab7
Contents?: true
Size: 342 Bytes
Versions: 396
Compression:
Stored size: 342 Bytes
Contents
### Running tests Run `guile test-file.scm` from the command line. ### Making your first Scheme solution To create scheme code that can be loaded with `(use-modules (dna))`, put this code in `dna.scm`: ```scheme (define-module (dna) #:export (to-rna)) (define to-rna (lambda (dna) ;; Do something to transcribe dna to rna )) ```
Version data entries
396 entries across 396 versions & 1 rubygems