#include "elem.h"

void showelem(char *begin, elem e, char *end)
{
  printf("%s %d %s",begin, e.prim.type, end);
}

