summary refs log tree commit diff stats
path: root/COPYING
Commit message (Expand)AuthorAgeFilesLines
* Changed license to the GNU General Public Licensehut2010-02-281-13/+674
* added license informationhut2010-01-081-0/+13
vision' href='/akkartik/mu/blame/mutable.mu?h=hlt&id=80df524b566a708551f752ce8b82e21738591651'>^
f8a4a457 ^


760f683f ^
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-ingredients
  *x <- copy 34
]