about summary refs log tree commit diff stats
path: root/308allocate-array.subx
Commit message (Collapse)AuthorAgeFilesLines
* 7254Kartik Agaram2020-11-171-0/+1
|
* 6781 - new app: RPN (postfix) calculatorKartik Agaram2020-09-151-1/+1
| | | | This was surprisingly hard; bugs discovered all over the place.
* 6742 - support for formatting in fake screensKartik Agaram2020-09-071-0/+2
| | | | | We still need a few primitives, but we can implement these as needed. I'm ready to call the fake screen done.
* 6727 - bugfix in a multiply instructionKartik Agaram2020-08-221-1/+4
| | | | Also more error-detection for this case all across the toolchain.
* 6682 - experimental support for streams and slicesKartik Agaram2020-07-281-1/+1
| | | | | | | | | Slices contain `addr`s so the same rules apply to them. They can't be stored in structs and so on. But they may be an efficient temporary while parsing. Streams are currently a second generic type after arrays, and gradually strengthening the case to just bite the bullet and support first-class generics in Mu.
* 6645 - heap allocations in MuKartik Agaram2020-07-131-0/+19
- allocate var - populate var, n Both rely on the type of `var` to compute the size of the allocation. No need to repeat the name of the type like in C, C++ or Java.