/* -*-ePiX-*- */
#include "epix.h"
using namespace ePiX;

int main()
{
  picture(P(-1,-1),P(1,1), "2x1in");

  begin();

  // uncomment and permute these lines
  // crop_ellipse();
  // backing(Yellow());
  border(Black(), "1pt");

  font_size("Huge");
  label(P(0,0), "Hello, world!");

  end();
}