Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 440 Bytes

File metadata and controls

14 lines (10 loc) · 440 Bytes

printf (function)

Print data to stdout using C-style format specifiers.

The same formats as the standard C library printf are supported. Integer format types (e.g. %d) truncate the Numbers or BigInts to 32 bits. Use the l modifier (e.g. %ld) to truncate to 64 bits.

declare function printf(format: string, ...args: Array<any>): void;