add single files, secure server, hello world
This commit is contained in:
11
single_file_tests/term.dart
Normal file
11
single_file_tests/term.dart
Normal 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.");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user