add single files, secure server, hello world

This commit is contained in:
2020-02-09 23:35:18 +08:00
parent 9f8a7ccc59
commit 2ddf9538ea
17 changed files with 270 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env dart
import 'dart:io';
main() {
if (stdioType(stdout) == StdioType.terminal) {
print("Is term.");
} else {
print("Not term.");
}
}