header static method
Implementation
static void header(String text) {
stdout.writeln('');
stdout.writeln('═' * 50);
stdout.writeln(text);
stdout.writeln('═' * 50);
stdout.writeln('');
}
static void header(String text) {
stdout.writeln('');
stdout.writeln('═' * 50);
stdout.writeln(text);
stdout.writeln('═' * 50);
stdout.writeln('');
}