2023-09-25 18:56:08 +02:00

14 lines
187 B
Plaintext

void setup()
{
size(800, 600);
}
void draw()
{
// Clear Background to prevent shadows
background(40, 40, 40, 256);
textSize(50);
text(key, width / 2, height / 2);
}