14 lines
187 B
Plaintext
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);
|
|
}
|