Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active March 13, 2019 19:22
Show Gist options
  • Save ezhov-da/823fbe9cf9029c011eb43a5ac17baa4d to your computer and use it in GitHub Desktop.
Save ezhov-da/823fbe9cf9029c011eb43a5ac17baa4d to your computer and use it in GitHub Desktop.
groovy ввод с консоли
//==> http://stackoverflow.com/questions/10184091/groovy-console-read-input
BufferedReader br = new BufferedReader(new InputStreamReader(System.in))
print "Input:"
def userInput = br.readLine()
println "You entered: $userInput"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment