| |
write(*,x,y,#, "text"); //displaying text
write(*,x,y,#, string); //displaying a string variable
write_int(*,x,y,#, &integer); //displaying a integer variable
write_float(*,x,y,#, &float); //displaying a float variable
//* = ID of the loaded font (font1 for example); 0 for standart font
//x,y = the coordinates, where the text should be written
//# = the alignment of the font
//0==Left superior corner; 1==Superior center;
//2==Right superior corner; 3==Left center;
//4==Center; 5==Right center; 6==Left inferior corner;
//7==Inferior center; 8==Inferior corner
right
|