about summary refs log blame commit diff stats
path: root/counters.mu
blob: 6428ff9b214d5bf9419f81beb91f8b5cb24f43f6 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                                          
 
                    
                                                               
                             
                                            
 
 
                          
             
                                                                                                                       


                                                    
 
 
             
             
             
                                            
             
                                            
                                             


                                                                 
                 


                                                                   
                                                          

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

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

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

recipe main [
  local-scope
  # counter A
  a:address:array:location <- new-counter 34
  # counter B
  b:address:array:location <- new-counter 23
  # increment both by 2 but in different ways
  increment-counter a:address:array:location, 1
  b-value:number <- increment-counter b:address:array:location, 2
  a-value:number <- increment-counter a:address:array:location, 1
  # 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, [ 
]
]