f55452241f
FossilOrigin-Name: 320b451250ed338d92d1cf9b15412a47d6267721b5c577b9ec10086a359eab76
27 lines
671 B
HTML
27 lines
671 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<title>RETRO FORTH</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script src="image.js"></script>
|
|
<script src="nga.js"></script>
|
|
</head>
|
|
|
|
<body onLoad='loadproject()'>
|
|
<div class='left'>
|
|
<textarea id='input' onchange='saveproject()'>
|
|
</textarea>
|
|
<iframe src='http://forth.works:9999'></iframe>
|
|
</div>
|
|
<div class='right'>
|
|
<div style='padding: 8px'>
|
|
<button onclick='cls()'>Clear</button>
|
|
<button onclick='go()'>Go</button>
|
|
</div>
|
|
<textarea id='console' style='height: 88vh' readonly></textarea>
|
|
<canvas id="canvas" width="300" height="300"></canvas>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|