about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 5706 - example at different levels of syntax sugarKartik Agaram2019-10-196-0/+740
| | | | | Thanks Mateusz Czapliński for the feedback: https://lobste.rs/s/xtxlec/mu_minimal_hobbyist_computing_stack#c_1mzq94
* 5705Kartik Agaram2019-10-191-5/+9
|
* 5704Kartik Agaram2019-10-193-71/+93
| | | | Minor tweaks based on feedback from Max Bernstein.
* 5703Kartik Agaram2019-10-182-10/+12
| | | | | | | Fix https://github.com/akkartik/mu/issues/38: gen_soso_iso on Arch Linux. Also deemphasize bootable disk images in the Readme since that side's less mature.
* 5702 - fix a typo in online helpKartik Agaram2019-10-182-2/+2
| | | | This commit fixes #37. Thanks Thomas Munoz!
* 5701Kartik Agaram2019-10-1757-1404/+1613
|
* 5700Kartik Agaram2019-10-1732-55/+55
|
* 5699Kartik Agaram2019-10-171-5/+7
|
* 5698Kartik Agaram2019-10-1557-886/+886
| | | | Thanks Andrew Owen for reporting this typo.
* 5697Kartik Agaram2019-10-131-1/+1
| | | | Feedback at https://news.ycombinator.com/item?id=21242190#21242784
* 5696Kartik Agaram2019-10-033-2/+2
|
* 5695Kartik Agaram2019-10-031-1/+1
|
* 5694Kartik Agaram2019-09-281-1/+2
|
* 5693Kartik Agaram2019-09-272-15/+11
| | | | Undo previous commit.
* 5692 - attempt at never leaving kernel modeKartik Agaram2019-09-272-11/+15
| | | | Doesn't work. Kernel gets kicked back to the Grub prompt(!)
* 5691Kartik Agaram2019-09-271-15/+8
|
* 5690Kartik Agaram2019-09-271-16/+15
|
* 5689Kartik Agaram2019-09-271-35/+37
|
* 5688Kartik Agaram2019-09-231-1/+1
|
* 5687Kartik Agaram2019-09-2315-274/+413
| | | | | | | | | Move stack operations to a layer of their own. It was some short-term pain to take out the syntax sugar from it, but we need access to this layer from braces, which can't depend on sugar since it's part of sugar. Just simpler to keep one clear line and not have to build sometimes with some sugar but not others.
* 5686Kartik Agaram2019-09-221-1/+1
| | | | Get mulisp reflecting whatever's typed in again.
* 5685 - back tinkering with mulispKartik Agaram2019-09-221-35/+41
|
* 5684Kartik Agaram2019-09-2114-211/+216
| | | | Support function-call syntax when linkifying functions in html files.
* 5683Kartik Agaram2019-09-2051-6678/+7932
|
* 5682Kartik Agaram2019-09-201-1/+1
|
* 5681Kartik Agaram2019-09-201-0/+2
|
* 5680Kartik Agaram2019-09-203-3/+10
| | | | Include braces.subx in translation by default.
* 5679 - braces seem doneKartik Agaram2019-09-202-14/+331
|
* 5678Kartik Agaram2019-09-195-123/+123
|
* 5677Kartik Agaram2019-09-191-6/+12
|
* 5676Kartik Agaram2019-09-1916-410/+419
|
* 5675 - move helpers from subx-common into layersKartik Agaram2019-09-1948-2430/+2347
| | | | | | | | | | | | | | | | This undoes 5672 in favor of a new plan: Layers 000 - 099 are for running without syntax sugar. We use them for building syntax-sugar passes. Layers 100 and up are for running with all syntax sugar. The layers are arranged in approximate order so more phases rely on earlier layers than later ones. I plan to not use intermediate syntax sugar (just sigils without calls, or sigils and calls without braces) anywhere except in the specific passes implementing them.
* 5674Kartik Agaram2019-09-191-0/+0
|
* 5673 - standardize a few knobsKartik Agaram2019-09-1922-35/+36
|
* 5672 - move hex out of appsKartik Agaram2019-09-1918-17/+42
|
* 5671Kartik Agaram2019-09-1910-0/+0
|
* 5670Kartik Agaram2019-09-198-0/+0
|
* 5669Kartik Agaram2019-09-1915-26/+28
|
* 5668 - start reorg to permit syntax sugar in layersKartik Agaram2019-09-1924-42/+42
| | | | | | | | | | | | | | | | | | | Right now we always build the library before any apps. Apps are where our syntax sugar translators (sigils, calls, braces) live. So we can't use sugar in the standard library. New idea: move all code for SubX phases into the top-level. Perhaps we should also just build a single file rather than pipeline stages. But for now we'll build each phase by building up to some specific layer. This will simplify test_apps and move lots of one-off logic to a more standard form in test_layers. I'm also going to reorg existing layers so that we introduce each phase at a point where it mostly only gets the helpers it needs. This commit itself is just cleaning up some common strings. Using explicit names for them streamlines binaries a bit.
* 5667Kartik Agaram2019-09-191-2/+0
|
* 5666 - start of sugar for structured control flowKartik Agaram2019-09-194-10/+357
|
* 5665Kartik Agaram2019-09-191-1/+2
| | | | | | | | | The core library is a mess right now, because it can't use syntax sugar. I need some way to tier the library so that later layers can use syntax sugar, but without adding cognitive load. A shell pipeline is pretty, but maybe I need to drop it. Just add functions to layers. Get all of the translator out of the apps/ sub-directory.
* 5664Kartik Agaram2019-09-182-2/+0
|
* 5663Kartik Agaram2019-09-181-4/+63
| | | | | | Snapshot of mulisp before we put it on the back-burner. It's going to take too long, and we're better off building out the lower layers that make it more convenient to create.
* 5662Kartik Agaram2019-09-152-3/+3
| | | | Fix several breakages.
* 5661Kartik Agaram2019-09-1528-34/+34
|
* 5660Kartik Agaram2019-09-151-1/+1
| | | | Fix CI.
* 5659Kartik Agaram2019-09-1534-2128/+2128
|
* 5658Kartik Agaram2019-09-1512-12/+12
|
* 5657Kartik Agaram2019-09-141-0/+3
|