print() without a newline in Dart?

You can use stdout in dart:io package:

import "dart:io";
stdout.write("foo");

will print foo to the console but not place a \n after it.