This commit is contained in:
Olivier Gagnon
2022-01-08 13:25:06 -05:00
parent fb90e21a31
commit f4ac7344c4
126 changed files with 1919 additions and 612 deletions

View File

@@ -4,19 +4,19 @@
## NS.print() method
Prints a value or a variable to the scripts logs.
Prints one or move values or variables to the scripts logs.
<b>Signature:</b>
```typescript
print(msg: any): void;
print(...args: any[]): void;
```
## Parameters
| Parameter | Type | Description |
| --- | --- | --- |
| msg | any | Value to be printed. |
| args | any\[\] | Value(s) to be printed. |
<b>Returns:</b>