Skip to content

Instantly share code, notes, and snippets.

@nagat01
nagat01 / clorets.fs
Created March 30, 2012 22:00
F# html and javascript generator
open System
type Html =
| Tag of string * Html list
| Attribute of string * string
| Content of string
override __.ToString() =
match __ with
| Tag (tag,htmls) ->
let mutable attributes = ""