From e0e982e4e66b94dd1dfb1b7e0de80692729c065d Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 26 Apr 2025 02:53:43 +0530 Subject: Update README to include WASM compilation post. --- public/index.html | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'public/index.html') diff --git a/public/index.html b/public/index.html index c0820b2..46de12d 100644 --- a/public/index.html +++ b/public/index.html @@ -25,11 +25,15 @@

- I have only implemented the first 12 chapters of the book. Refer the supported syntax section below. + Post on how I approached implementing the book in Clojure. Writing a C Compiler in Clojure

- Wrote about how I approached implementing this in Clojure. Writing a C Compiler in Clojure + Post on how to compile the clojure codebase to WASM. Compiling Clojure to Web Assembly +

+ +

+ I have only implemented the first 12 chapters of the book. Refer the supported syntax section below.

@@ -158,6 +162,7 @@ int main(void) { }); + // https://gist.github.com/designbyadrian/2eb329c853516cef618a // Store original console methods var originalConsoleLog = console.log; var originalConsoleError = console.error; @@ -204,7 +209,6 @@ int main(void) { async function runCompiler(source, stage) { - // https://gist.github.com/designbyadrian/2eb329c853516cef618a try { const args = [source, "linux", stage]; const config = new GraalVM.Config(); -- cgit v1.2.3