view samples/http.tp @ 333:577406b25f89

Added binding for SDL_SetTextureColorMod and SDL_GetTextureColorMod and updated the Freetype sample to use it for setting the color of text
author Michael Pavone <pavone@retrodev.com>
date Sun, 29 Mar 2015 09:43:24 -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"
	}
}