mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-04-01 07:29:48 +08:00
11 lines
262 B
Dart
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);
|
|
}
|