main function

void main()

Implementation

void main() {
  final date = DateTime.now();
  print(date.date);
  print(date.time);
}