From 1854d1d1e442b45331d8ee5f69025ca580dd11eb Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 3 Oct 2019 20:29:24 +0200 Subject: [PATCH] Dart simple hello world --- Dart/main.dart | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 Dart/main.dart diff --git a/Dart/main.dart b/Dart/main.dart new file mode 100644 index 0000000..d6de20f --- /dev/null +++ b/Dart/main.dart @@ -0,0 +1,3 @@ +main(List arguments) { + print('Hello world!'); +} \ No newline at end of file