=proto void duk_push_int(duk_context *ctx, int val); =stack [ ... ] -> [ ... val! ] =summary
Convert val to an IEEE double and push it to the stack.
val
This is a shorthand for calling duk_push_number(ctx, (double) val).
duk_push_number(ctx, (double) val)