📅  最后修改于: 2022-03-11 14:58:57.308000             🧑  作者: Mango
// Importing dart:io file
import 'dart:io';
void main()
{
//use stdout.write() instead of print()
stdout.write("Hello ");
stdout.write("World!");
//it will not add a new line after printing
}