about summary refs log tree commit diff stats
path: root/074list.mu
Commit message (Collapse)AuthorAgeFilesLines
* 3015 - more symbolic names in testsKartik K. Agaram2016-05-261-13/+14
| | | | | | There's still a problem: if I ever want to use any of the special scenario variables like 'screen', 'console', etc., then I can't use 'local-scope' in my scenario.
* 2986 - new example: the 8-queens problemKartik K. Agaram2016-05-201-0/+9
| | | | Just playing around with edit/ and trying to find bugs.
* 2985 - allow multiple pointers within listsKartik K. Agaram2016-05-201-3/+2
| | | | | | | | | | Earlier, this wasn't legal: y:address:list:number <- push 34, x:address:list:number (So that x and y would point to different places in the list.) However, functional code relies on this ability a lot.
* 2864 - replace all address:shared with just addressKartik K. Agaram2016-04-241-20/+20
| | | | | | | Now that we no longer have non-shared addresses, we can just always track refcounts for all addresses. Phew!
* 2839 - get-address purged until layer 75Kartik K. Agaram2016-04-161-4/+1
|
* 2795 - quick hacks for CalebKartik K. Agaram2016-03-191-24/+0
| | | | | | | | It turns out that my extensible stash doesn't yet work well in all situations. If you try to stash an array, you end up trying to create an array local that's not statically sized -- a no-no. Bah, just throw it all out.
* 2782 - directly use string literals everywhereKartik K. Agaram2016-03-141-7/+2
|
* 2778 - fix all layersKartik K. Agaram2016-03-141-0/+133