xxxxxxxxxx
14
// Button (c) 2015, 2021 kouichi.matsuda@gmail.com
function setup() {
let button = createButton("押して"); // ボタンの作成
button.mousePressed(clicked); // クリックされたらclicked関数を実行
}
function draw() {
}
function clicked() {
text("押された !", 10,50);
}