header static method
Implementation
static void header(String title) {
stdout.writeln('');
stdout.writeln('\x1B[1;36m══════════════════════════════════════\x1B[0m');
stdout.writeln('\x1B[1;36m $title\x1B[0m');
stdout.writeln('\x1B[1;36m══════════════════════════════════════\x1B[0m');
stdout.writeln('');
}