about summary refs log tree commit diff stats
path: root/060rewrite_literal_string.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-12-26 11:44:14 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-26 11:44:14 -0800
commit204dae921abff0c70e017215bb3c91fa6ca11aff (patch)
tree548788d18c881e3f6beb56133c1ca9d733ffa1e8 /060rewrite_literal_string.cc
parente5c11a5137d538b7713dd8708ca767c208824c06 (diff)
downloadmu-204dae921abff0c70e017215bb3c91fa6ca11aff.tar.gz
3710
Turns out we don't need to explicitly add anchors for each line. Vim's TOhtml
has magic for that out of the box.
Diffstat (limited to '060rewrite_literal_string.cc')
0 files changed, 0 insertions, 0 deletions
7470d97a0e139'>^
9458918f ^
dff1abb2 ^
734eef7c ^
dff1abb2 ^
734eef7c ^
dff1abb2 ^
734eef7c ^

dff1abb2 ^
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
                                                                         
                                           
                                                   
                                   


             
                                                  
                                             
                                        
                                  
                    
                                              
                                         
                                            

                     
 
# example program: read a character from one file and write it to another
# BEWARE: this will modify your file system
# before running it, put a character into /tmp/mu-x
# after running it, check /tmp/mu-y

def main [
  local-scope
  f:num/file <- $open-file-for-reading [/tmp/mu-x]
  $print [file to read from: ], f, 10/newline
  c:char, eof?:bool <- $read-from-file f
  $print [copying ], c, 10/newline
  f <- $close-file f
  $print [file after closing: ], f, 10/newline
  f <- $open-file-for-writing [/tmp/mu-y]
  $print [file to write to: ], f, 10/newline
  $write-to-file f, c
  f <- $close-file f
]