import System.Drawing;
import System.Drawing.Text;

var ifc : InstalledFontCollection;
ifc = new InstalledFontCollection();
var ff : FontFamily[];
ff = ifc.Families;
for(var i = 0; i < ff.Length; i++)
	print(ff[i].Name);
