This module defines APIs for connecting to HTTP servers.
Given a [[ceylon.uri::Uri]] to an HTTP service, you can
get its text representation with:
void getit(Uri uri) {
Request request = get(uri);
Response response = request.execute();
print(response.contents);
}
