=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.

This is a shorthand for calling duk_push_number(ctx, (double) val).

=example duk_push_int(ctx, 123); =tags stack