about summary refs log tree commit diff stats
path: root/html/055stream.subx.html
Commit message (Expand)AuthorAgeFilesLines
* 5806Kartik Agaram2019-12-091-9/+9
* 5701Kartik Agaram2019-10-171-6/+6
* 5683Kartik Agaram2019-09-201-38/+37
* 5592 - switch register names to lowercaseKartik Agaram2019-08-261-33/+33
* 5582Kartik Agaram2019-08-251-3/+3
* 5490Kartik Agaram2019-07-271-2/+2
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+135
ik.com> 2015-05-05 21:17:24 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-05-05 21:17:24 -0700 1276 - make C++ version the default' href='/akkartik/mu/commit/arc/Readme?h=main&id=b96af395b9af2ff9df94b3e82213171f30827c8d'>b96af395 ^
6086465d ^


b96af395 ^
f7c9c8f0 ^
b96af395 ^


f7c9c8f0 ^
b96af395 ^


f7c9c8f0 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21

                                            

                                                                        
 
          
                       
                                                  


                                                         
                                   
     


                 
          


                                                                      
     
Original prototype, last modified 2015-03-14

First install [Racket](http://racket-lang.org) (just for this prototype;
last tested with v6.3). Then:

  ```shell
  $ cd mu/archives/1.vm
  $ git clone http://github.com/arclanguage/anarki
  $ cd anarki
  $   git checkout d7290130a7  # last compatible snapshot
  $ cd ..
  $ ./mu test mu.arc.t  # run tests
  ```

Example programs:

  ```shell
  $ ./mu factorial.mu  # computes factorial of 5
  $ ./mu fork.mu  # two threads print '33' and '34' forever
  $ ./mu channel.mu  # two threads in a producer/consumer relationship
  ```