Skip to content

Instantly share code, notes, and snippets.

@AxGord
Last active August 29, 2015 14:27
Show Gist options
  • Save AxGord/4dfce29175979c1d897a to your computer and use it in GitHub Desktop.
Save AxGord/4dfce29175979c1d897a to your computer and use it in GitHub Desktop.
import pony.net.http.HttpServer;
import pony.net.http.IHttpConnection;
class HttpServerExample {
static function main() {
new HttpServer().request = function(connection:IHttpConnection) {
connection.sendText('Hello world');
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment