Hi @dron3903
Download a font here, and try this code.
The name of the font and extension must be exact. Also capital letters.
PFont myFont;
void setup() {
size(200, 200);
background(255);
myFont = createFont("CYRIL1.TTF", 28);
fill(0);
textFont(myFont);
textAlign(CENTER);
println(("Привет мир");
}
void draw() {
text("Привет мир", width/2, height/2);
}