view samples/http.tp @ 222:c6e321a538d4

Implemented more of the grammar. Dealt with some name conflicts along the way.
author Michael Pavone <pavone@retrodev.com>
date Sun, 29 Dec 2013 13:08:01 -0800
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"
	}
}