k-l-lambda's picture
added node-addon-lilypond
f65fe85
raw
history blame
320 Bytes
const fs = require("fs")
const lilypond = require("../output/lilypond");
const test = async () => {
const error = await lilypond.engrave("$#", {
log (message) {
console.log("log:", message);
},
});
console.log("result:", error);
};
const main = async () => {
await test();
await test();
};
main();