Remove bad example.

This commit is contained in:
Erik Svedäng 2020-04-29 11:29:39 +02:00
parent 4dd24d78e3
commit ed071835d1

View File

@ -2,9 +2,3 @@
(let-do [xs $[1 2 3 4 5]]
(StaticArray.map! xs &(fn [x] (* @x 2)))
(println* (StaticArray.reduce &(fn [total x] (+ total @x)) 0 xs))))
(defn f []
(let [nested $[[1 2 3]
[4 5 6]
[7 8 9]]]
@(StaticArray.unsafe-nth nested 1)))