aboutsummaryrefslogtreecommitdiff
path: root/python/core.py
AgeCommit message (Collapse)Author
2014-04-17All: perf test, Makefile refactor, add *host-language*Joel Martin
Other: - bash,make,postscript: quasiquote of vectors - Fix Java slurp - add time function to core.mal - switches on *host-language* for make time-secs vs time-ms - Ignore */experiments directories
2014-04-16All: move some fns to core. Major cleanup.Joel Martin
- Don't import/require core until step4. - Define cond/or macros from step8
2014-04-16Python: metadata on builtin funcs. Support python3.Joel Martin
2014-04-15All: fix get. All pass stepA tests.Joel Martin
2014-04-09Fix metadata on functions.Joel Martin
- Don't use metadata to store ast, env, params data. - In Clojure, store metadata on the :meta key of the real metadata. This also allows using any datatype as metadata.
2014-04-06C,PHP,Python: stepA fixup. All tests/impls pass!Joel Martin
2014-04-02All: split types into types, env, printer, core.Joel Martin
- types: low-level mapping to the implementation language. - core: functions on types that are exposed directly to mal. - printer: implementation called by pr-str, str, prn, println. - env: the environment implementation - Also, unindent all TCO while loops so that the diff of step4 and step5 are minimized.