// lib.txt   21 Oct 2002
//   public release som-v2  30 Dec 2004

//to neg a = 0 - a
//to mod m n = m - (n * (m / n))  // mod is already primitive

to print x = syscall {1 x}
to printc x = syscall {2 x}
to space = syscall {2 32}
to nl = syscall {2 10}
to getchar = syscall {3}
to gets buf = syscall {4 buf}

