mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
17 lines
229 B
Nim
17 lines
229 B
Nim
# Test Posix interface
|
|
|
|
when not defined(windows):
|
|
|
|
import posix
|
|
|
|
var
|
|
u: Tutsname
|
|
|
|
discard uname(u)
|
|
|
|
writeln(stdout, u.sysname)
|
|
writeln(stdout, u.nodename)
|
|
writeln(stdout, u.release)
|
|
writeln(stdout, u.machine)
|
|
|