Files
proxypin/test/tests.dart
2023-10-20 14:58:34 +08:00

11 lines
262 B
Dart

import 'dart:io';
void main() {
print(RegExp('http://dddd/hello\$').hasMatch("http://dddd/hello/world"));
print(Platform.version);
print(Platform.localHostname);
print(Platform.operatingSystem);
print(Platform.localeName);
print(Platform.script);
}