repl_wasm: rename Cargo feature wasmer->wasi_test

This commit is contained in:
Brian Carroll 2022-12-14 20:05:01 +00:00
parent d389601035
commit e6325fa78f
No known key found for this signature in database
GPG key ID: 5C7B2EC4101703C0
4 changed files with 18 additions and 19 deletions

View file

@ -20,7 +20,7 @@ extern "C" {
// To debug in the browser, start up the web REPL as per instructions in repl_www/README.md
// and sprinkle your code with console_log!("{:?}", my_value);
// (Or if you're running the unit tests in Wasmer, you can just use println! or dbg!)
// (Or if you're running the unit tests with WASI, you can just use println! or dbg!)
#[macro_export]
macro_rules! console_log {
($($t:tt)*) => (log(&format_args!($($t)*).to_string()))