You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
320 B

=proto
void duk_eval_string_noresult(duk_context *ctx, const char *str);
=stack
[ ... ] -> [ ... ]
=summary
<p>Like
<code><a href="#duk_eval_string">duk_eval_string()</a></code>, but leaves no
result on the value stack.</p>
=example
duk_eval_string_noresult(ctx, "print('testString'.toUpperCase())");
=tags
compile