view samples/http.tp @ 369:6b5096b07dd5

Lame hack to allow LL dialect code to access the module object when its also the parent of the current object
author Michael Pavone <pavone@retrodev.com>
date Wed, 12 Aug 2015 19:13:04 -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"
	}
}