mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-11 10:13:52 +01:00
18 lines
491 B
ReStructuredText
18 lines
491 B
ReStructuredText
print() Netscript Function
|
|
===========================
|
|
|
|
.. js:function:: print(args...)
|
|
|
|
:RAM cost: 0 GB
|
|
:param args: Values to be printed.
|
|
|
|
Prints any number of values to the script's logs.
|
|
|
|
Example:
|
|
|
|
.. code-block:: javascript
|
|
|
|
ns.print("Hello world!"); // Prints "Hello world!" in the logs.
|
|
ns.print({a:5}); // Prints '{"a":5}' in the logs.
|
|
const text = "can"
|
|
ns.print("I "+ text +" use variables :)") // Prints "I can use variables :)" |