about summary refs log tree commit diff stats
path: root/mu
Commit message (Collapse)AuthorAgeFilesLines
* 1706 - automatically recompile mu when necessaryKartik K. Agaram2015-07-041-0/+8
|
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-27/+0
| | | | I've tried to update the Readme, but there are at least a couple of issues.
* 828 - interactive replKartik K. Agaram2015-02-231-8/+16
| | | | | Still klunky since mu has no notion of a return value. I find myself using $print all the time.
* 407Kartik K. Agaram2014-12-131-0/+3
|
* 405 - permit loading just low levels of codebaseKartik K. Agaram2014-12-131-0/+16
When I'm doing extensive surgery to the internals I want to avoid loading higher levels; they aren't expected to work. But I don't want to keep different levels in separate files just for that. And I definitely don't want to put low-level stuff first. Now I can influence loading in a cross-cutting manner by creating sections with numbers: (section 100 ...code...) And disabling them by running: $ ./anarki/arc 99 mu.arc.t Currently we load all mu 'system software' in level 100, so running at level 99 sidesteps them. Lower levels coming soon. But most of the time we don't need to worry about levels, and the 'mu' script lets us forget about them. Just run .mu files with: $ ./mu factorial.mu To run tests: $ ./mu test mu.arc.t