about summary refs log tree commit diff stats
path: root/x.mu
Commit message (Collapse)AuthorAgeFilesLines
* 3380Kartik K. Agaram2016-09-171-3/+3
| | | | | One more place we were missing expanding type abbreviations: inside container definitions.
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-1/+1
| | | | | | | | | | | | I'm dropping all mention of 'recipe' terminology from the Readme. That way I hope to avoid further bike-shedding discussions while I very slowly decide on the right terminology with my students. I could be smarter in my error messages and use 'recipe' when code uses it and 'function' otherwise. But what about other words like ingredient? It would all add complexity that I'm not yet sure is worthwhile. But I do want separate experiences for veteran programmers reading about Mu on github and for people learning programming using Mu.
* 1868 - start using naked literals everywhereKartik K. Agaram2015-07-281-2/+2
| | | | First step to reducing typing burden. Next step: inferring types.
* 1363 - rename 'integer' to 'number'Kartik K. Agaram2015-05-131-3/+3
| | | | ..now that we support non-integers.
* 1345Kartik K. Agaram2015-05-111-3/+6
|
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-6/+5
| | | | I've tried to update the Readme, but there are at least a couple of issues.
* 717Kartik K. Agaram2015-02-081-0/+1
|
* 428 - cleanup odds and endsKartik K. Agaram2014-12-141-3/+3
|
* 403 - 'function' is more clear than 'def'Kartik K. Agaram2014-12-121-1/+1
|
* 314 - better syntax for functionsKartik K. Agaram2014-11-241-2/+2
|
* 212 - initial flowKartik K. Agaram2014-11-011-0/+5
| | | | Bring back the example program.
* 145 - delete random programsKartik K. Agaram2014-10-141-6/+0
| | | | | | | | | They need a type table to work, but I'm keeping type tables next to the tests. Everything needs to be a test from now on. (But first some fixes to the terminal primitives.)
* 91 - just implement ops natively to maintain momentumKartik K. Agaram2014-08-311-0/+1
|
* 49 - make Readme less ambiguousKartik K. Agaram2014-08-181-3/+3
| | | | | | | As expected, mu works just as well with named variables. Maybe I want to insert the local stack frame computations automatically using the assembler? How to indicate globals then? Add 'local' metadata only if 'global' is absent? What about lexical stack frames?
* 42 - update ReadmeKartik K. Agaram2014-07-311-3/+3
| | | | Broken since commit 11 on Jul 10.
* 2 - compound functionsKartik K. Agaram2014-07-061-1/+0
|
* 1Kartik K. Agaram2014-07-061-4/+6
|
* 0Kartik K. Agaram2014-07-061-0/+4
d='n373' href='#n373'>373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606