mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-15 04:23:17 +08:00
12 lines
250 B
Dart
12 lines
250 B
Dart
import 'dart:io';
|
|
|
|
void main() {
|
|
print(Platform.version);
|
|
print(Platform.localHostname);
|
|
print(Platform.operatingSystem);
|
|
print(Platform.localeName);
|
|
print(Platform.script);
|
|
print(Platform.environment);
|
|
print(Platform.packageConfig);
|
|
}
|