summary refs log tree commit diff stats
path: root/tests/tposix.nim
blob: 87ea3acaf400b7b68fad6bc7292c167060c1b068 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Test Posix interface

import posix

var
  u: Tutsname

discard uname(u)

writeln(stdout, u.sysname)
writeln(stdout, u.nodename)
writeln(stdout, u.release)
writeln(stdout, u.machine)