#include <mpc.h>
#include <sys/utsname.h>
#define Nmin 3
#define Nmax 5

int [*]main() {
  repl n;

  for(n=Nmin; n<=Nmax; n++) {
    static net SimpleNet(n) snet;
    [snet]: {
      struct utsname s;
      uname(&s);
      MPC_Printf("I'm from the static network on \"%s\" (n=%d).\n",
                     s.nodename, n);
    }
  }
}