about summary refs log blame commit diff stats
path: root/http-client.mu
blob: 6bf1bfa67d9e1ee89f279ecf1f3186e0ae22c4ba (plain) (tree)
1
2
3
4
5
6
7
8
9
10

                                          

             
                                                                                    
                 
                                    


                                     
                 
                        

        
                                    





                             
# example program: reading a URL over HTTP

def main [
  local-scope
  google:&:source:char <- start-reading-from-network 0/real-resources, [google.com/]
  n:num <- copy 0
  buf:&:buffer:char <- new-buffer 30
  {
    c:char, done?:bool <- read google
    break-if done?
    n <- add n, 1
    buf <- append buf, c
    loop
  }
  result:text <- buffer-to-array buf
  open-console
  len:num <- length *result
  print 0/real-screen, result
  wait-for-some-interaction
  close-console
]