about summary refs log tree commit diff stats
path: root/code/extensions
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2009-06-13 04:46:02 +0200
committerhut <hut@lavabit.com>2009-06-13 04:46:02 +0200
commit92f17aeca4389141d780a67dd76a85dc8f1dc704 (patch)
tree3b9d77abab80ef3ce4d3a7cfb7e7f3833ba5254c /code/extensions
parentbf5cb1214361b006878fa4a9ee7975564afd26f8 (diff)
downloadranger-92f17aeca4389141d780a67dd76a85dc8f1dc704.tar.gz
cleaned up
Diffstat (limited to 'code/extensions')
0 files changed, 0 insertions, 0 deletions
C++ version the default' href='/akkartik/mu/commit/counters.mu?h=main&id=b96af395b9af2ff9df94b3e82213171f30827c8d'>b96af395 ^
5497090a ^


b96af395 ^
d1c12218 ^
b96af395 ^







5497090a ^

b96af395 ^
d2244a2f ^


5497090a ^
b96af395 ^

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

                                                                          
 

                                                                       
                             

                                   
 


                                                                                                                         


                                                    
 
 







                                                                       

                                                                
                 


                                                                   
                                                          

 
# example program: maintain multiple counters with isolated lexical scopes
# (spaces)

recipe init-counter [
  default-space:address:array:location <- new location:type, 30:literal
  n:number <- next-ingredient
  reply default-space:address:space
]

recipe increment-counter [
  default-space:address:array:location <- new location:type, 30:literal
  0:address:array:location/names:init-counter <- next-ingredient  # setup outer space; it *must* come from 'init-counter'
  x:number <- next-ingredient
  n:number/space:1 <- add n:number/space:1, x:number
  reply n:number/space:1
]

recipe main [
  default-space:address:array:location <- new location:type, 30:literal
  # counter A
  a:address:space <- init-counter 34:literal
  # counter B
  b:address:space <- init-counter 23:literal
  # increment both by 2 but in different ways
  increment-counter a:address:space, 1:literal
  b-value:number <- increment-counter b:address:space, 2:literal
  a-value:number <- increment-counter a:address:space, 1:literal
  # check results
  $print [Contents of counters
]
  # trailing space in next line is to help with syntax highlighting
  $print [a: ], a-value:number, [ b: ], b-value:number, [ 
]
]