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,10 @@
#!/usr/bin/env dart
import 'dart:io' show Platform;
main() {
Map<String, String> envVars = Platform.environment;
envVars.forEach((k, v) => {
print('$k = $v')
});
}