This is a test
This is a line break
This is another line
define([], function () { | |
return 'B'; | |
}); |
define([], function () { | |
return 'A'; | |
}); |
define('b', [], function () { | |
return 'B'; | |
}); |
define('a', [], function () { | |
return 'A'; | |
}); |
This is a test
This is a line break
This is another line
This document is a draft in progress Authors include @danheberden and @alitsa.
;; https://blog.svpino.com/2015/05/07/five-programming-problems-every-software-engineer-should-be-able-to-solve-in-less-than-1-hour | |
;; problem four, not all that pretty | |
(defn numseq [x] | |
(map (comp read-string str) (str x))) | |
(defn strsort [x | |
y] | |
(let [a (first x) | |
b (first y)] |