const art = emotion();
const code = structure();
function create() {
const intuition = art * feeling();
const system = code * logic();
return intuition + system;
}
function feeling() {
return Math.random();
}
function logic() {
return 1;
}
export default create;