This commit is contained in:
Ingy döt Net 2013-06-05 21:47:54 +00:00
parent 1f1ad49427
commit 6f050a029e
2496 changed files with 37609 additions and 3031 deletions

View file

@ -1,7 +1,7 @@
#lang racket
;; using the `for/vector` comprehension form
;; using the `for/vector' comprehension form
(for/vector ([i #(1 2 3 4 5)]) (sqr i))
;; the usual functional `map`
;; the usual functional `map'
(vector-map sqr #(1 2 3 4 5))