Does anyone know of a kotlin library that lets you...
# announcements
p
Does anyone know of a kotlin library that lets you do interactive CLI apps? I'd like something that wraps the logic of asking questions / parsing stdin, etc.
z
Might want to ask in #C010QM0HN4W
c
Jake Wharton has the following project with the library above https://github.com/JakeWharton/adb-event-mirror
j
Used clikt in like 10 things. It good.
n
but it sounds like what @Pacane wants is more like a REPL structure, which.. i am not sure anybody made a library for yet
👍 1
although i have not uses clikt before and just fro ma quick glance there were some mentions of
fun promptForLine
and stdin being used https://ajalt.github.io/clikt/options/#prompting-for-input
j
If you're doing a REPL you would parse each entered line using clikt to determine the action to take