Skip to content

Commit c697436

Browse files
committed
POPL 2019 AEC submission
1 parent 1443dde commit c697436

5 files changed

Lines changed: 8628 additions & 0 deletions

File tree

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,5 @@ You can use `dune build --profile debug --auto-promote` instead of `dune build -
8787
### Results
8888
You can now open `src/_build/default/www/hazel.html` in a browser to see Hazel in action.
8989
90+
For the purposes of POPL 2019 artifact evaluation, we included a pre-built version at `popl19aec-www/hazel.html`. Tested with Chromium (64-bit) version 70.0.3538.67.
91+

popl19aec-www/dune

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
(include_subdirs no)
2+
3+
(rule
4+
(copy ../hazel.bc.js hazel.js))

popl19aec-www/hazel.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
6+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
7+
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
8+
9+
<title>Hazel</title>
10+
11+
<link rel="stylesheet" href="style.css">
12+
</head>
13+
14+
<body spellcheck="false">
15+
<div class="container" id="container"></div>
16+
</body>
17+
18+
<script src="hazel.js"></script>
19+
</html>

0 commit comments

Comments
 (0)