Prints a string representation of object to stdout.
object
Appends end to the string representation.
end
void printOut(Object? object, [String end = "\n"]) { stdout.write(object); stdout.write(end); }