aboutsummaryrefslogtreecommitdiff
path: root/std/os.pk
blob: c28796fce769341d53f3e92fa47baf61b787e762 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
## std.os: OS-specific functions, as well as some general abstractions.

pub func exit(code: uint = 0): never =
  ...

pub func sleep(milliseconds: uint) =
  ...

pub func admin: bool =
  ...