diff options
author | Linus Lee <linus@thesephist.com> | 2021-03-28 11:11:03 -0400 |
---|---|---|
committer | Linus Lee <linus@thesephist.com> | 2021-03-28 11:11:03 -0400 |
commit | 21a0f4df60c29c5babc3635d2b69d6eb965ee334 (patch) | |
tree | 4634cdb5fcec78dfd9e7dbcb1201f1841731492e | |
parent | 3c9738d297c1fc350775be72f86b5eb863cde1b0 (diff) | |
download | tabloid-fake-closure-21a0f4df60c29c5babc3635d2b69d6eb965ee334.tar.gz tabloid-fake-closure-21a0f4df60c29c5babc3635d2b69d6eb965ee334.zip |
docs: Add reference to #lang tabloid and tabloid-samples on website
-rw-r--r-- | static/js/main.js | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/static/js/main.js b/static/js/main.js index 5b8e833..e14b8a6 100644 --- a/static/js/main.js +++ b/static/js/main.js @@ -224,12 +224,21 @@ class App extends Component { <p>Stay tuned to find out!</p> <h2>Does it actually work?</h2> <p> - Yes. Tabloid is a <strong>fully functioning, turing complete + Yes. Tabloid is a <strong>fully functioning, Turing complete programming language with an interpreter</strong> written in JavaScript. Tabloid currently only supports numbers, strings, and booleans, but with these elements, you can write any - program you'd want to write. You can edit and run the program above, or - <a href="https://github.com/thesephist/tabloid">see how it works for yourself</a>. + program you'd want to write. You can edit and run the program + above, or <a href="https://github.com/thesephist/tabloid">see + how it works for yourself</a>. + </p> + <p> + Besides this online interpreter, Tabloid now also has a mostly + compatible <a href="https://github.com/otherjoel/tabloid" + target="_blank">implementation in Racket</a> and a small <a + href="https://github.com/MarcelloTheArcane/tabloid-samples" + target="_blank">library of helper functions</a> ... for some + reason. </p> <p> Before making Tabloid, I also created a more <strike>useful and |