From 07541271b2b0e1d9f04932ecb582965395e88eb5 Mon Sep 17 00:00:00 2001 From: Dmitry Iv Date: Thu, 24 Aug 2023 10:59:45 -0400 Subject: [PATCH] Update readme.md --- readme.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 701cd0f..f1abcb0 100644 --- a/readme.md +++ b/readme.md @@ -2,8 +2,7 @@ > Bare minimum wasm text parser, compiler, formatter. -Compiler is alternative for [wabt/wat2wasm](https://github.com/AssemblyScript/wabt.js), useful for hi-level languages (eg. [auro](https://github.com/audio-lab/auro)) or dynamic (in-browser?) compilation.
-Formatter is useful to pretty-print or minify WAT code. +Alternative for [wat2wasm](https://github.com/AssemblyScript/wabt.js), useful for hi-level languages or dynamic (in-browser?) compilation.
@@ -104,6 +103,10 @@ const str = print(tree, { It may miss some edge cases and nice error messages. For better REPL/dev experience use [wabt](https://github.com/AssemblyScript/wabt.js).
Also: no floating HEX support, eg. `(f32.const 0x1.fffffep+127)` for now. +## Projects using watr + +* [auro](https://github.com/audio-lab/auro) – audio processing language + ## Useful links * [MDN: control flow](https://developer.mozilla.org/en-US/docs/WebAssembly/Reference/Control_flow)