What hash/map based programming language exist? -
much lisp considered list based programming language languages considered map based?
i remember reading 1 few years back, can not longer find reference it. looked like:
[if:test then:<code> else:<more code>]
edit: , more quoted code blocks conditional evaluated. in fashion if/cond , others not special form in lisp/scheme.
the syntax above supposed map/dictionary lisp's syntax list like.
if key value of test.
then key value of .
...
that looks misc, lazy lisp maps instead of lists fundamental datatype. (it's lazy, has deep integration of metadata (similar clojure) , couple of other things, still lisp: functional, homoiconic, macros, implemented metacircular interpreter, stuff.)
here's code samples blog:
[if [> 5 10] then:[+ 5 10] else:[- 5 10]] [let '[square:[lambda '[x:1] '[* x x]]] '[square 12] ] [take 20 [numbers from:0]]
unfortunately, seems besides 2 blog articles long ago, there's not going on anymore.
Comments
Post a Comment