Mercurial > repos > tabletprog
view samples/http.tp @ 342:884cd5d54c0f
Bugfix to array find:withDefault and a small optimization to array map
author | Michael Pavone <pavone@retrodev.com> |
---|---|
date | Sun, 05 Apr 2015 22:49:40 -0700 |
parents | 55e0dca7d3d7 |
children |
line wrap: on
line source
#{ main <- :args { server <- "rhope.retrodev.com" if: (args length) > 1 { server <- args get: 1 } cli <- http client: server resp <- (cli get: "/") print: "Status: " . (resp status) . "\n" print: "Code: " . (resp statusCode) . "\n" print: "Headers:\n" foreach: (resp headers) :key val { print: key . " -> " . val . "\n" } print: "Body:\n" . (resp body) . "\n" } }