#include "scltypes.h"
#include "sclerror.h"
#include "sclfuncs.h"
#include "intvec.h"
#include "realmat.h"         
#include "kronprd.h"         // libscl.h is the only one acutally needed
#include "libscl.h"          // because each includes its predecessor.

using namespace scl;

using std::cout;
using std::string;

int main(int argc, char** argp, char** envp)
{
  cout << starbox("/Hello world//");

  cout << starbox("/How now /brown cow//");

  string msg("\nSecond argument changes delimiter\n");
  msg += string("'/' is no longer a delimter\n\n");

  cout << starbox(msg.c_str(),'\n');

  return 0;
}
