UNPKG

js-forth

Version:

An implementation of [Forth](https://en.wikipedia.org/wiki/Forth_(programming_language)) in Javascript

29 lines (25 loc) 1.13 kB
<!DOCTYPE html> <html> <head> <title>js forth fun!</title> <link rel="stylesheet" type="text/css" href="css/forth.css"> <script src="bundle.js"></script> </head> <body> <section> <h2>js forth fun!</h2> <a href="http://www.forth.com/starting-forth/sf1/sf1.html" target="_blank">Learn forth here</a> </section> <section id="main"> <section id="repl"> <section id="output"></section> <section> <textarea id="input" autofocus="true", cols="80" rows="6" onkeyup="repl.interpret(event)"></textarea> </section> Ctrl+p and Ctrl+n for repl history </section> <section id="stack"></section> </section> <a href="https://github.com/brendanator/jsforth"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/652c5b9acfaddf3a9c326fa6bde407b87f7be0f4/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6f72616e67655f6666373630302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png"></a> </body> </html>