about summary refs log tree commit diff stats
path: root/atom/styles
Commit message (Expand)AuthorAgeFilesLines
* 5839 - colors for comments and string literalsKartik Agaram2019-12-281-0/+15
* 5838 - syntax highlighting for atomKartik Agaram2019-12-281-0/+16
00 committer Kartik K. Agaram <vc@akkartik.com> 2016-03-08 01:46:47 -0800 2735 - define recipes using 'def'' href='/akkartik/mu/commit/counters.mu?h=hlt&id=1ead356219bb2eb59487d1012f837bd07ec336f5'>1ead3562 ^
1ae2ff1c ^

b96af395 ^
d1c12218 ^
1ead3562 ^
77d5b5d6 ^
1ae2ff1c ^
455fbac6 ^
b7830945 ^
b96af395 ^
d1c12218 ^
1ead3562 ^
77d5b5d6 ^
b96af395 ^
455fbac6 ^
b96af395 ^
455fbac6 ^
b96af395 ^
ce87c19e ^


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

                                                                          
 
                                                                         

                                        
 
 
                                                                                                           
             
                  
                                                                                                                         
                               
 
 
          
             
             
                                                   
             
                                                   
                                             


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

def new-counter n:number -> default-space:address:shared:array:location [
  default-space <- new location:type, 30
  load-ingredients
]

def increment-counter outer:address:shared:array:location/names:new-counter, x:number -> n:number/space:1 [
  local-scope
  load-ingredients
  0:address:shared:array:location/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:address:shared:array:location <- new-counter 34
  # counter B
  b:address:shared:array:location <- new-counter 23
  # increment both by 2 but in different ways
  increment-counter a, 1
  b-value:number <- increment-counter b, 2
  a-value:number <- increment-counter a, 1
  # check results
  $print [Contents of counters], 10/newline
  # trailing space in next line is to help with syntax highlighting
  $print [a: ], a-value, [ b: ], b-value,  10/newline
]