about summary refs log tree commit diff stats
path: root/apps/arith.mu
Commit message (Collapse)AuthorAgeFilesLines
* 7165Kartik Agaram2020-11-031-6/+6
| | | | | All tasks of https://github.com/akkartik/mu/issues/45#issuecomment-719990879 should now be complete.
* 7157Kartik Agaram2020-11-011-47/+48
|
* 7156Kartik Agaram2020-11-011-1/+4
|
* 7155Kartik Agaram2020-11-011-12/+12
| | | | apps/arith.mu compiling again.
* 6778Kartik Agaram2020-09-141-1/+1
|
* 6777Kartik Agaram2020-09-141-9/+8
| | | | Print answers in decimal in apps/arith.mu
* 6699 - start building out fake screenKartik Agaram2020-08-011-5/+5
| | | | | We now have all existing apps and prototypes going through the dependency-injected wrapper, even though it doesn't actually implement the fake screen yet.
* 6603Kartik Agaram2020-06-301-1/+1
|
* 6602Kartik Agaram2020-06-301-1/+1
|
* 6599Kartik Agaram2020-06-291-4/+4
|
* 6550 - type-checking for function callsKartik Agaram2020-06-181-5/+5
| | | | There were a couple of benign type errors in arith.mu but nowhere else.
* 6546Kartik Agaram2020-06-151-1/+1
|
* 6545Kartik Agaram2020-06-151-1/+0
|
* 6544 - arith: docKartik Agaram2020-06-151-1/+43
|
* 6543 - arith: cleanupKartik Agaram2020-06-151-17/+13
|
* 6542 - arith: bracketsKartik Agaram2020-06-151-6/+47
| | | | Ok, I think I'm done with this app for now.
* 6541 - arith: start on bracket supportKartik Agaram2020-06-151-2/+8
|
* 6540 - arith: mulKartik Agaram2020-06-151-0/+52
| | | | I forgot that Mu doesn't have div yet.
* 6539 - arith: start on mul/divKartik Agaram2020-06-151-2/+7
|
* 6538 - arith: multi-ary arithmeticKartik Agaram2020-06-151-25/+31
|
* 6537Kartik Agaram2020-06-151-21/+21
|
* 6536Kartik Agaram2020-06-151-8/+7
| | | | Cleaner way to handle EOF.
* 6535Kartik Agaram2020-06-151-36/+36
|
* 6534 - arith: add/subtractKartik Agaram2020-06-151-3/+37
|
* 6533 - arith: ignore spacesKartik Agaram2020-06-151-18/+49
|
* 6532 - arith: REPL converting ints to hexKartik Agaram2020-06-151-6/+18
| | | | | I'm using one character of lookahead, inspired by Crenshaw's "let's build a compiler".
* 6531Kartik Agaram2020-06-151-25/+17
|
* 6530Kartik Agaram2020-06-151-0/+40
New prototype: a simple 4-operator calculator. Inspired (yet again) by Crenshaw.