Skip to content

Commit

Permalink
chore: why is it empty
Browse files Browse the repository at this point in the history
  • Loading branch information
bric3 committed Sep 18, 2023
1 parent 9968be7 commit f4588ff
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,10 @@ void figlet(
font = figletFont.font;
}

out.println(Figlet.render(stringToProcess, font));
String render = Figlet.render(stringToProcess, font);
out.println("😮‍💨🤨😞☹️😤: " + render.length());
out.println(render);
out.flush();
}

@Command(
Expand Down

0 comments on commit f4588ff

Please sign in to comment.