about summary refs log tree commit diff stats
path: root/archive/2.vm/026call.cc
Commit message (Collapse)AuthorAgeFilesLines
* 5485 - promote SubX to top-levelKartik Agaram2019-07-271-0/+246
819759ea327d147f28a09bf'>897ae8c1 ^
1ae2ff1c ^

b96af395 ^
d1c12218 ^
897ae8c1 ^
77d5b5d6 ^
1ae2ff1c ^
897ae8c1 ^
b7830945 ^
b96af395 ^
d1c12218 ^
1ead3562 ^
77d5b5d6 ^
b96af395 ^
897ae8c1 ^
b96af395 ^
897ae8c1 ^
b96af395 ^
ce87c19e ^
192d59d3 ^

b96af395 ^
1ead3562 ^
1ead3562 ^
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

                                                                          
 
                                              

                                        
 
 
                                                                             
             
                  
                                                                                                 
                               
 
 
          
             
             
                           
             
                           
                                             
                        

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

def new-counter n:num -> default-space:space [
  default-space <- new location:type, 30
  load-ingredients
]

def increment-counter outer:space/names:new-counter, x:num -> n:num/space:1 [
  local-scope
  load-ingredients
  0:space/names:new-counter <- copy outer  # setup outer space; it *must* come from 'new-counter'
  n/space:1 <- add n/space:1, x
]

def main [
  local-scope
  # counter A
  a:space <- new-counter 34
  # counter B
  b:space <- new-counter 23
  # increment both by 2 but in different ways
  increment-counter a, 1
  b-value:num <- increment-counter b, 2
  a-value:num <- increment-counter a, 1
  # check results
  $print [Contents of counters], 10/newline
  $print [a: ], a-value, [ b: ], b-value,  10/newline
]