mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-04-03 08:05:06 +08:00
9 lines
160 B
Dart
9 lines
160 B
Dart
import 'dart:io';
|
|
|
|
void main() {
|
|
print(Platform.version);
|
|
print(Platform.localHostname);
|
|
print(Platform.operatingSystem);
|
|
print(Platform.localeName);
|
|
}
|