Skip to content

Instantly share code, notes, and snippets.

@ezhov-da
Last active December 12, 2020 19:18
Show Gist options
  • Save ezhov-da/24de16c64305dc3518103b3bbdee64ee to your computer and use it in GitHub Desktop.
Save ezhov-da/24de16c64305dc3518103b3bbdee64ee to your computer and use it in GitHub Desktop.
groovy чтение с консоли
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