about summary refs log tree commit diff stats
path: root/client.c
diff options
context:
space:
mode:
Diffstat (limited to 'client.c')
0 files changed, 0 insertions, 0 deletions
he previous revision' href='/akkartik/mu/blame/mutable.mu?h=hlt&id=11d6098bf71f31941065cbe1b228b3328af8ced0'>^
1
2
3
4
5
6
7
8
9
10
11
12
13



                            
                            


       
                            



                  
# compare immutable-error.mu

def main [
  local-scope
  x:&:num <- new number:type
  foo x
]

def foo x:&:num -> x:&:num [
  local-scope
  load-ingredients
  *x <- copy 34
]