Skip to content

Instantly share code, notes, and snippets.

@frankhale
Created October 7, 2015 02:28
Show Gist options
  • Save frankhale/64d33ef6a85d00e69a9f to your computer and use it in GitHub Desktop.
Save frankhale/64d33ef6a85d00e69a9f to your computer and use it in GitHub Desktop.
An F# IHttpHandler hello,world
type HelloWorldHandler() =
interface IHttpHandler with
member this.IsReusable
with get() = false
member this.ProcessRequest(context:HttpContext) =
context.Response.ContentType <- "text/html"
context.Response.Write("<b>I love F# OMG!</b>")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment