Initial draft of stack-based machine for JS.

The idea I have is that I'll translate/compile JavaScript
into a rudimentary Forth like language.  This sketch forms
the basis for that language's engine.
This commit is contained in:
2025-09-16 03:34:51 -04:00
parent 1bf12c858f
commit a96dbe2953
5 changed files with 646 additions and 0 deletions

5
js4g/Dillo/Dillo.h Normal file
View File

@ -0,0 +1,5 @@
static_assert( __cplusplus >= 2023'02 );
#pragma once
namespace Dillo::inline Hydrogen {}