You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use boa::prelude::*;// This would import all the commonly-used thingsfnmain(){let number = Value::number(3.1415);let realm = Realm::create();letmut engine = Interpreter::new(realm);let result = forward(&mut engine,"Math.PI");}
The text was updated successfully, but these errors were encountered:
What would the prelude contain?
Maybe
Interpreter
,Value
, what else?How to use (just an example)
The text was updated successfully, but these errors were encountered: