int i, j;
float x, y;
scanf("%d%d%f%f", &i, &j, &x, &y);Is this possible with nimrod procs?
How do you import scanf from C?
    proc fscanf(c: TFile, frmt: cstring) {.varargs, importc,
      header: "<stdio.h>".}
    # ...
    fscanf(f,"%lf %lf %lf %ld/%ld",
           addr b, addr b, addr b, addr busy, addr total)