about summary refs log tree commit diff stats
path: root/sandbox/004-programming-environment.mu
Commit message (Collapse)AuthorAgeFilesLines
* 2707Kartik K. Agaram2016-02-251-2/+0
|
* 2590 - support scrolling through sandboxesKartik K. Agaram2016-01-221-5/+6
|
* 2586 - show first sandbox with error in statusKartik K. Agaram2016-01-221-0/+3
|
* 2580 - check product type of 'maybe-convert'Kartik K. Agaram2016-01-201-4/+4
| | | | I had to undo some over-zealous changes in 2576.
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-24/+29
| | | | | | | | | | | | | | | | This is the one major refinement on the C programming model I'm planning to introduce in mu. Instead of Rust's menagerie of pointer types and static checking, I want to introduce just one new type, and use it to perform ref-counting at runtime. So far all we're doing is updating new's interface. The actual ref-counting implementation is next. One implication: I might sometimes need duplicate implementations for a recipe with allocated vs vanilla addresses of the same type. So far it seems I can get away with just always passing in allocated addresses; the situations when you want to pass an unallocated address to a recipe should be few and far between.
* 2548 - teach 'print' to print integersKartik K. Agaram2015-12-281-4/+8
| | | | | | | | | | Still can't print non-integer numbers, so this is a bit hacky. The big consequence is that you can't print literal characters anymore because of our rules about how we pick which variant to statically dispatch to. You have to save to a character variable first. Maybe I can add an annotation to literals..
* support immutability checks in sandbox/ appKartik K. Agaram2015-12-151-3/+3
|
* 2468 - overload print-character as just 'print'Kartik K. Agaram2015-11-211-6/+6
|
* 2467 - rename 'string' to 'text' everywhereKartik K. Agaram2015-11-211-7/+7
| | | | | | | | Not entirely happy with this. Maybe we'll find a better name. But at least it's an improvement. One part I *am* happy with is renaming string-replace to replace, string-append to append, etc. Overdue, now that we have static dispatch.
* 2428 - sandbox/ working againKartik K. Agaram2015-11-121-46/+20
|
* 2309Kartik K. Agaram2015-10-281-11/+11
|
* 2206 - fix missing ingredientsKartik K. Agaram2015-09-261-2/+2
| | | | | How the heck was this working until now? There must be redundant moves. And was I clobbering test data?
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-121-0/+360
Thanks Jack and Caleb Couch for the idea.