vasku
Version:
TVM-Solidity contract development framework
13 lines (12 loc) • 810 B
text/typescript
export function printGreeting (): void {
const green = '\x1b[32m'
const greeting = green + `
██╗ ██╗ █████╗ ███████╗██╗ ██╗██╗ ██╗
██║ ██║██╔══██╗██╔════╝██║ ██╔╝██║ ██║
██║ ██║███████║███████╗█████╔╝ ██║ ██║
╚██╗ ██╔╝██╔══██║╚════██║██╔═██╗ ██║ ██║
╚████╔╝ ██║ ██║███████║██║ ██╗╚██████╔╝
╚═══╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═════╝
`.substring(1)
console.log(greeting)
}