export function printGreeting (): void {
  const green = '\x1b[32m'
  const greeting = green + `
██╗   ██╗ █████╗ ███████╗██╗  ██╗██╗   ██╗
██║   ██║██╔══██╗██╔════╝██║ ██╔╝██║   ██║
██║   ██║███████║███████╗█████╔╝ ██║   ██║
╚██╗ ██╔╝██╔══██║╚════██║██╔═██╗ ██║   ██║
 ╚████╔╝ ██║  ██║███████║██║  ██╗╚██████╔╝
  ╚═══╝  ╚═╝  ╚═╝╚══════╝╚═╝  ╚═╝ ╚═════╝ 
`.substring(1)
  console.log(greeting)
}
