Incorporating web version, bumping version.

This commit is contained in:
Brad Nelson
2022-07-14 21:19:09 -07:00
parent 9b789a2aca
commit e24be23281
12 changed files with 132 additions and 55 deletions

View File

@ -34,9 +34,12 @@ r|
r"
if (!globalObj['write']) {
var con = document.createElement('pre');
con.id = 'console';
document.body.appendChild(con);
var con = document.getElementById('console');
if (con === null) {
con = document.createElement('pre');
con.id = 'console';
document.body.appendChild(con);
}
window.inbuffer = [];
window.outbuffer = '';
window.onkeypress = function(e) {

View File

@ -16,5 +16,3 @@ limitations under the License.
-->
<script src="ueforth.js"></script>
<script type="forth">
needs ansi.fs