text-io
text-io copied to clipboard
A library for creating interactive console applications in Java
Ubuntu 22.04.3 LTS (minimal server) Linux x64 JRE https://adoptium.net/de/temurin/releases/?version=17 use as portable (extract java archiv and set JAVA_HOME) if we call `final TextIO term = TextIoFactory.getTextIO();` we get the following...
I have added Italian translations for various messages displayed in the console.
How would you do this? I am using println("") but this leads to an issues where the next line of code is not executed so the terminal just lets you...
Hey! I am using the textio library in one of my projects, where I create a terminal using this code: ```java private final TextIO textIO; private final TextTerminal terminal; //......
Hi! How I can minimize a text-io console to the windows/linux system tray? 
``` private static Operacao escolherUmaOperacao() { return IO.getTextIO().newEnumInputReader(Operacao.class) .withInvalidIndexErrorMessagesProvider((s, s1, i, i1) -> Collections.singletonList("Opção inválida. Digite um número de " + i + " até " + i1)) .withValueFormatter(Operacao::getNome) .read("Escolha...