Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | new primitive: check-array-equal | Kartik Agaram | 2019-05-26 | 1 | -0/+68 |
| | |||||
* | new primitive: parse-array-of-ints | Kartik Agaram | 2019-05-25 | 1 | -3/+305 |
| | | | | | | | | | | Mostly for tests. For every new type we want to compare in a test, we're now going to start using some primitive that can parse its value from string. In this manner we can get syntax for literals in machine code. Open question: parsing aggregates of aggregates. Like an array of structs. This is the first time we allocate from the heap in standard library tests. So we now need to start initializing the heap in all our apps. | ||||
* | . | Kartik Agaram | 2019-05-25 | 1 | -0/+17 |
| | | | | | hoist 'Heap' variable into the std library in anticipation of the parse-array-of-ints primitive. | ||||
* | new primitive: array-equal? | Kartik Agaram | 2019-05-25 | 1 | -0/+247 |