summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorhut <hut@lavabit.com>2010-06-12 02:33:24 +0200
committerhut <hut@lavabit.com>2010-06-12 02:33:24 +0200
commit9a41e0fc3695c2c7f9b07a93c48f72ee9838c698 (patch)
tree3314ee07d016ecec6e263721c344b046a8afc0c9 /doc
parenta4c9208bb69b09207c017ae88c810ef0ee83a780 (diff)
downloadranger-9a41e0fc3695c2c7f9b07a93c48f72ee9838c698.tar.gz
scripts/scope: make it executable
Diffstat (limited to 'doc')
0 files changed, 0 insertions, 0 deletions
700 committer Kartik K. Agaram <vc@akkartik.com> 2016-09-10 11:47:28 -0700 3318' href='/akkartik/mu/commit/mutable.mu?h=main&id=f8a4a457cdf2d2ccd69260ce19f2cda0490e73fb'>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
]