--cięcie--
  Tone.start();

  let synth = new Tone.Synth().toDestination();

  new Tone.Sequence((time, note) => {
    synth.triggerAttackRelease(note, "16n", time);
  }, ["G4", "C4", "C4", "C4"], "4n").start("0:0:0").stop("4:0:0");

  Tone.Transport.start();
});
