<!DOCTYPE html>
<!--
SPDX-FileCopyrightText: Chris Pressey, the original author of this work, has dedicated it to the public domain.
For more information, please refer to <https://unlicense.org/>
SPDX-License-Identifier: Unlicense
-->
<head>
<meta charset="utf-8">
<title>Robin interpreter</title>
</head>
<body>
<h1>Robin interpreter</h1>
<div id="installation">
<textarea id="prog" rows="10" cols="80"></textarea>
<div><button id="run-button">Run</button></div>
<pre id="result"></pre>
</div>
<script src="../eg/examplePrograms.jsonp.js"></script>
<script src="hastec-launcher.js"></script>
<script src="robin.js"></script>
<script>
launch({
container: document.getElementById('installation'),
initialOption: "fact.robin"
});
</script>
</body>