#include <stdio.h>
#include "graph.h"

main()
	{
	int mode;
	mode = CGA_640x200;
	g_init (mode);
/*	limit (50, 210, 50, 150);  */
/*	locate (10.0, 100.0, 10.0, 90.0 );	 units in gdu's */ 
	frame ();
	scale (0, 10.0, 0, 10.0);
	move (1,9);
	lorg (1);
	labelf ("abcdefghijklm\nnopqrstuvwxyz");
	move (1,6);
	labelf ("ABCDEFGHIJKLM\nNOPQRSTUVWXYZ");
	move (1,3);
	labelf ("1234567890,./\\<\n>?| ;':\"!@#$%^&*()_+`~");

	exit(0);
	}

