lechat

Results 1 comments of lechat

You can define anonymous string like this: ```rust fn create_anonymous_string(&mut self, string_content: &str) -> Value { self.data_ctx.define(string_content.as_bytes().to_vec().into_boxed_slice()); let sym = self .module .declare_anonymous_data(true, false) .expect("problem declaring data object"); let _result...