6 lines
96 B
JavaScript
6 lines
96 B
JavaScript
|
export function debugMsg(msg) {
|
||
|
fill(255);
|
||
|
stroke(0);
|
||
|
textSize(12);
|
||
|
text(msg, 24, 24);
|
||
|
}
|