Posts

Showing posts with the label groovy

Digital Marketing

Read from STDIN in Groovy

print " What is your name? " def name = System . in . newReader() . readLine() println " Your name is " + name Exmaple: $ groovy hello.goovy What is your name? Goyun Your name is Goyun

Hello World in Goovy

Inside: hello_world.groovy print "Hello World!\n" Run $ groovy hello_world.groovy

Groovy: “Unable to locate package” while trying to install packages with APT

Run sudo apt-get update Example: root@2d91134ff240:/# groovy -v bash: groovy: command not found root@2d91134ff240:/# apt -y install groovy Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package groovy root@2d91134ff240:/# apt -y install groovy Reading package lists... Done Building dependency tree Reading state information... Done E: Unable to locate package groovy root@2d91134ff240:/#  apt-get update