xxxxxxxxxx
24
// https://discourse.processing.org/t/writeln-in-p5-js/7010
let s1 = "Hallo World";
let s2 = "send to mytext.txt in my download folder"
function setup() {
createCanvas(200, 200);
createButton('save')
.position(10, 10)
.mousePressed(function() {
var writer = createWriter('mytext.txt');
let s = s1+"\n"+s2;
writer.print(s);
writer.print("time: "+hour()+":"+minute()+":"+second());
writer.close();
writer.clear();
print("you got it?");
});
}
function draw() {
background(200, 200, 0);
}