feat: init commit, add helloworld-dart

This commit is contained in:
2024-12-29 21:59:51 +08:00
parent 45e2da5870
commit 09f276aace
3 changed files with 87 additions and 0 deletions

5
helloworld-dart/main.dart Executable file
View File

@@ -0,0 +1,5 @@
#!/usr/bin/env dart
main(List<String> args) {
print("Hello world.");
}