interactive-cli-leetcode-solutions
Version:
An interactive cli for leetcode solutions preview
15 lines (14 loc) • 899 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = () => {
const message = `
#######################################################################################################
# #
# Welcome! This is an interactive CLI where you can browse Leetcode solutions. #
# #
# Feel free to contribute at https://github.com/IschanLois/interactive-cli-leetcode-solutions #
# #
#######################################################################################################
`;
console.log(message);
};