about summary refs log blame commit diff stats
path: root/http-client.mu
blob: 681b4738cad8b26b9e14747b94738547f8fd70db (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
  clear-screen 0/screen  # non-scrolling app
  len:num <- length *result
  print 0/real-screen, result
  wait-for-some-interaction
  close-console
]
ef='#n582'>582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616