writeln

fnvoid writeln(T...)(T args)
  • Equivalent to write(args, '\n'). Calling writeln without
  • arguments is valid and just prints a newline to the standard
  • output.

    Parameters