const Mind = require('node-mind'); /** * Letters. * * - Imagine these # and . represent black and white pixels. */ const a = character( '.#####.' + '#.....#' + '#.....#' + '#######' + '#.....#' + '#.....#' + '#.....#' ) const b = character( '######.' + '#.....#' + '#.....#' + '######.' + '#.....#' + '#.....#' + '######.' ) const c = character( '#######' + '#......' + '#......' + '#......' + '#....

