main function

void main(
  1. List<String> args
)

Implementation

void main(List<String> args) {
  print(args.join(" "));
}