diff options
| author | Your Name <agrawalshagun07@gmail.com> | 2025-04-26 02:53:43 +0530 |
|---|---|---|
| committer | Your Name <agrawalshagun07@gmail.com> | 2025-04-26 02:53:43 +0530 |
| commit | e0e982e4e66b94dd1dfb1b7e0de80692729c065d (patch) | |
| tree | 7f39528fe2a3d2daf0f41b1ce1cdd42c7b135017 /public | |
| parent | 0f07ef8ebfcbb7f9077246eec08fd1435cdaee46 (diff) | |
Update README to include WASM compilation post.
Diffstat (limited to 'public')
| -rw-r--r-- | public/index.html | 10 |
1 files changed, 7 insertions, 3 deletions
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 @@ <div class="mb-4"> <p class="text-gray-700"> - 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. <a class = "underline text-blue-600 hover:text-blue-800 visited:text-purple-600" href="https://shagunagrawal.me/posts/writing-a-c-compiler-in-clojure/">Writing a C Compiler in Clojure</a> </p> <p class="text-gray-700"> - Wrote about how I approached implementing this in Clojure. <a class = "underline text-blue-600 hover:text-blue-800 visited:text-purple-600" href="agrawal.me/posts/writing-a-c-compiler-in-clojure/">Writing a C Compiler in Clojure</a> + Post on how to compile the clojure codebase to WASM. <a class = "underline text-blue-600 hover:text-blue-800 visited:text-purple-600" href="https://shagunagrawal.me/posts/compiling-clojure-to-wasm-image/">Compiling Clojure to Web Assembly</a> + </p> + + <p class="text-gray-700"> + I have only implemented the first 12 chapters of the book. Refer the supported syntax section below. </p> </div> @@ -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(); |
