memoscan
← all memos

Memo 0x8533f947…4d345e on Ethereum

function loveWorkBalance(depth = 0) { const indent = " ".repeat(depth); depth < 10 ? (console.log(indent + "Ambition || Family"), loveWorkBalance(depth + 1)) : depth < 20 ? (console.log(indent + "Work || Love"), loveWorkBalance(depth + 1)) : depth < 30 ? (console.log(indent + "Success || Happiness"), loveWorkBalance(depth + 1)) : depth < 40 ? (console.log(indent + "Balance || Imbalance"), loveWorkBalance(depth + 1)) : loveWorkBalance(depth + 1); } loveWorkBalance();