mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-04-22 21:59:58 +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);
|
|
}
|