about summary refs log tree commit diff stats
path: root/src/vimrc.vim
diff options
context:
space:
mode:
Diffstat (limited to 'src/vimrc.vim')
0 files changed, 0 insertions, 0 deletions
ik K. Agaram <vc@akkartik.com> 2016-09-10 11:47:28 -0700 3318' href='/akkartik/mu/commit/mutable.mu?h=main&id=f8a4a457cdf2d2ccd69260ce19f2cda0490e73fb'>f8a4a457 ^
4a48bedc ^
f8a4a457 ^

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-inputs
  *x <- copy 34
]