|
|
|
|
|
by ilkhd2
6289 days ago
|
|
1.hmm, well, if you try it you'll see
that at least in the area of programming languages, after
spending some time you'll see that you reinvented s-expressions.
2. can be very interesting to see for example
this (sum of every vector-element) in json/yaml... (defn sum-vec [vec]
(let [vec-len (count vec)]
(loop [idx 0 acc 0]
(if (< idx vec-len)
(recur (inc idx) (+ acc (vec idx)))
acc)))) |
|
If I have Javascript then I already have mobile code.
If I'm using json in a situation where I don't have a Javascript interpreter, then I probably don't have a Lisp interpreter around either.