Skip to content

Instantly share code, notes, and snippets.

@cemerick

cemerick/foo.re Secret

Created October 5, 2021 17:10
Show Gist options
  • Save cemerick/f29992e3d8a0b96090483767c48e3fa0 to your computer and use it in GitHub Desktop.
Save cemerick/f29992e3d8a0b96090483767c48e3fa0 to your computer and use it in GitHub Desktop.
open Tyxml
open Tyxml.Html
let top (title, head_contents, body) = {
let head = head(<title>title</title>, head_contents);
<html>
head
<body> ...body </body>
</html>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment