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.
 
 
 
 
 
 

15 lines
269 B

=proto
void duk_push_false(duk_context *ctx);
=stack
[ ... ] -> [ ... false! ]
=summary
<p>Push <code>false</code> to stack. Equivalent to calling
<code><a href="#duk_push_boolean">duk_push_boolean(ctx, 0)</a></code>.</p>
=example
duk_push_false(ctx);
=tags
stack