mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-10 09:43:54 +01:00
32 lines
620 B
Markdown
32 lines
620 B
Markdown
|
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|||
|
|
|||
|
[Home](./index.md) > [bitburner](./bitburner.md) > [NS](./bitburner.ns.md) > [printf](./bitburner.ns.printf.md)
|
|||
|
|
|||
|
## NS.printf() method
|
|||
|
|
|||
|
Prints a formatted string to the script’s logs.
|
|||
|
|
|||
|
<b>Signature:</b>
|
|||
|
|
|||
|
```typescript
|
|||
|
printf(format: string, ...args: any[]): void;
|
|||
|
```
|
|||
|
|
|||
|
## Parameters
|
|||
|
|
|||
|
| Parameter | Type | Description |
|
|||
|
| --- | --- | --- |
|
|||
|
| format | string | format of the message |
|
|||
|
| args | any\[\] | Value(s) to be printed. |
|
|||
|
|
|||
|
<b>Returns:</b>
|
|||
|
|
|||
|
void
|
|||
|
|
|||
|
## Remarks
|
|||
|
|
|||
|
RAM cost: 0 GB
|
|||
|
|
|||
|
see: https://github.com/alexei/sprintf.js
|
|||
|
|