Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions doc/site/modules/core/system.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ the object is converted to a string by calling `toString` on it.
System.print("I like bananas") //> I like bananas
</pre>

Also returns `object`.

### System.**printAll**(sequence)

Iterates over `sequence` and prints each element, then prints a single newline
Expand All @@ -49,6 +51,8 @@ System.write(4 + 5) //> 9
In the above example, the result of `4 + 5` is printed, and then the prompt is
printed on the same line because no newline character was printed afterwards.

Also returns `object`.

### System.**writeAll**(sequence)

Iterates over `sequence` and prints each element, but does not print a newline
Expand Down