puts method

int puts(
  1. String str
)

Writes a string to stdout, appended with a newline.

Implementation

int puts(String str) {
  stdioWriteln(str);
  return 1; // Returns non-negative value on success
}