-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (75 loc) · 3.1 KB
/
index.html
File metadata and controls
102 lines (75 loc) · 3.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<!-- <meta name="description" content=Online OCaml Javascript REPLs /> -->
<link rel="stylesheet" type="text/css" media="screen" href="css/stylesheet.css">
<title>IOCamlJS Demos</title>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<a id="forkme_banner" href="https://github.com/andrewray/iocamljs">View on GitHub</a>
<h1 id="project_title">IOCamlJS Demos</h1>
<h2 id="project_tagline">Online OCaml Javascript REPLs</h2>
<!--
<section id="downloads">
<a class="zip_download_link" href="#">Download this project as a .zip file</a>
<a class="tar_download_link" href="#">Download this project as a tar.gz file</a>
</section>
-->
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<object type="image/svg+xml" data="IOnotepadJS.svg"></object>
<p><em><a href="getting_started.html">getting started</a>,
<a href="adding_demos.html">adding new demos</a>,
<a href="compiling_kernels.html">compiling custom kernels</a></em></p>
<h2 id="ocaml-4010">OCaml 4.01.0</h2>
<ul>
<li><a href="min.html">Basic REPL</a></li>
<li><a href="full.html">REPL</a> with js_of_ocaml, lwt and syntax extensions</li>
<li><a href="core_language.html">OCaml core language tutorial</a></li>
<li><a href="webgl_demo.html">Js_of_ocaml WebGL demo</a></li>
</ul>
<h2 id="ocaml-4020">OCaml 4.02.0</h2>
<ul>
<li><a href="min402.html">Basic REPL</a></li>
<li><a href="full402.html">REPL</a> with js_of_ocaml, lwt and syntax extensions</li>
<li><a href="tyxml.html">TyXML</a> demo. Typed HTML and SVG with rendering</li>
<li><a href="oh261.html">H.261 Decoder</a> demo - for no good reason!</li>
</ul>
<h2 id="ocaml-4020-with-modular-implicits">OCaml 4.02.0 with Modular Implicits</h2>
<p>Prototype compiler with ad-hoc polymorphism support via modular
implicits - <a href="http://www.lpw25.net/ml2014.pdf">draft paper</a>.</p>
<ul>
<li><a href="modimp.html">Basic REPL</a></li>
<li><a href="modimp_show.html">Example</a> defining Show</li>
</ul>
<h2 id="metaocaml-n102">MetaOCaml N102</h2>
<p><a href="http://okmij.org/ftp/ML/MetaOCaml.html">BER MetaOCaml N102</a> extends
OCaml 4.02.1 with language support for typed code generation.</p>
<ul>
<li><a href="ber.html">Basic REPL</a></li>
</ul>
<h2 id="ocaml-4030pr102-with-improved-errors">OCaml 4.03.0+pr102 with Improved Errors</h2>
<p>Arthur Charguérauds patch to
<a href="https://ocaml.org/meetings/ocaml/2014/ocaml2014_9.pdf">improve type error</a>
reporting.</p>
<ul>
<li><a href="improved_errors.html">Example</a></li>
</ul>
</section>
</div>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<!-- <p class="copyright">IOCamlJS from <a href="https://github.com/ujamjar">MicroJamJar Ltd</a></p> -->
</footer>
</div>
</body>
</html>