about summary refs log tree commit diff stats
path: root/sandbox/001-editor.mu
Commit message (Collapse)AuthorAgeFilesLines
* 3337 - first use of type abbreviations: textKartik K. Agaram2016-09-121-18/+18
| | | | | In the process I've uncover a couple of situations we don't support type abbreviations yet. They're next.
* 2983 - migrate buttons over to sandbox/Kartik K. Agaram2016-05-191-20/+0
|
* 2975Kartik K. Agaram2016-05-191-4/+5
| | | | Clean up this helper before we start redoing sandbox menubars.
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-38/+38
| | | | | | | Now that we no longer have non-shared addresses, we can just always track refcounts for all addresses. Phew!
* 2854 - purge get-address from sandbox/ appKartik K. Agaram2016-04-221-38/+31
|
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-16/+16
| | | | | | | | | | | | I'm dropping all mention of 'recipe' terminology from the Readme. That way I hope to avoid further bike-shedding discussions while I very slowly decide on the right terminology with my students. I could be smarter in my error messages and use 'recipe' when code uses it and 'function' otherwise. But what about other words like ingredient? It would all add complexity that I'm not yet sure is worthwhile. But I do want separate experiences for veteran programmers reading about Mu on github and for people learning programming using Mu.
* 2714 - apply 2604 to sandbox/Kartik K. Agaram2016-02-261-1/+1
|
* 2591Kartik K. Agaram2016-01-221-1/+7
|
* 2590 - support scrolling through sandboxesKartik K. Agaram2016-01-221-2/+6
|
* 2576 - distinguish allocated addresses from othersKartik K. Agaram2016-01-191-41/+41
| | | | | | | | | | | | | | | | 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-2/+4
| | | | | | | | | | 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-1/+1
|
* 2468 - overload print-character as just 'print'Kartik K. Agaram2015-11-211-3/+3
|
* 2467 - rename 'string' to 'text' everywhereKartik K. Agaram2015-11-211-5/+5
| | | | | | | | 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.
* 2446 - drop '-duplex' namespacing in recipesKartik K. Agaram2015-11-151-10/+10
| | | | Great that it just worked after the previous commit.
* 2428 - sandbox/ working againKartik K. Agaram2015-11-121-48/+28
|
* 2309Kartik K. Agaram2015-10-281-17/+17
|
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-121-0/+500
Thanks Jack and Caleb Couch for the idea.