about summary refs log tree commit diff stats
path: root/nqueens.mu
Commit message (Collapse)AuthorAgeFilesLines
* 4261 - start using literals for 'true' and 'false'Kartik Agaram2018-06-171-4/+4
| | | | | | | | | They uncovered one bug: in edit/003-shortcuts.mu <scroll-down> was returning 0 for an address in one place where I thought it was returning 0 for a boolean. Now we've eliminated this bad interaction between tangling and punning literals.
* 4134 - 'input' = 'ingredient'Kartik K. Agaram2017-12-031-4/+4
|
* 4008Kartik K. Agaram2017-09-251-3/+2
| | | | | Allow list `push` operation to save result in a new list rather than mutate the existing list.
* 4007Kartik K. Agaram2017-09-251-2/+2
|
* 4006Kartik K. Agaram2017-09-241-5/+4
|
* 4005Kartik K. Agaram2017-09-241-0/+4
| | | | https://www.reddit.com/r/ProgrammingLanguages/comments/727va7/a_comparison_of_lisps/dnh2q6u
* 3681Kartik K. Agaram2016-11-221-3/+4
| | | | Couple of fixes to example programs.
* 3656Kartik K. Agaram2016-11-101-6/+6
| | | | | | | | | | | | | | Periodic cleanup to replace 'reply' with 'return' everywhere in the repo. I use 'reply' for students to help reinforce the metaphor of function calls as being like messages through a pipe. But that causes 'reply' to get into my muscle memory when writing Mu code for myself, and I worry that that makes Mu seem unnecessarily alien to anybody reading on Github. Perhaps I should just give it up? I'll try using 'return' with my next student.
* 3483Kartik K. Agaram2016-10-081-10/+10
|
* 3389Kartik K. Agaram2016-09-171-5/+12
|
* 3380Kartik K. Agaram2016-09-171-16/+16
| | | | | One more place we were missing expanding type abbreviations: inside container definitions.
* 2996Kartik K. Agaram2016-05-211-1/+1
|
* 2986 - new example: the 8-queens problemKartik K. Agaram2016-05-201-0/+91
Just playing around with edit/ and trying to find bugs.