“Groovy”的版本间的差异
跳到导航
跳到搜索
(→usage) |
|||
第7行: | 第7行: | ||
=usage= | =usage= | ||
当然也可以直接创建.groovy文件用命令行直接运行。 | 当然也可以直接创建.groovy文件用命令行直接运行。 | ||
+ | ==hello world== | ||
+ | <pre> | ||
+ | emacs e.groovy | ||
+ | class Example { | ||
+ | static void main(String[] args) { | ||
+ | // Using a simple println statement to print output to the console | ||
+ | println('Hello World'); | ||
+ | } | ||
+ | } | ||
+ | |||
+ | |||
+ | groovy e.groovy | ||
+ | |||
+ | Hello World</pre> | ||
=see also= | =see also= | ||
[https://www.zhihu.com/question/22870020 为什么Groovy语言火不起来?] | [https://www.zhihu.com/question/22870020 为什么Groovy语言火不起来?] |
2021年5月23日 (日) 15:24的版本
ins
sudo apt install groovy groovy-doc #Groovy Version: 2.4.21 JVM: 11.0.8 Vendor: Debian OS: Linux
https://www.osradar.com/install-apache-groovy-ubuntu-debian/
usage
当然也可以直接创建.groovy文件用命令行直接运行。
hello world
emacs e.groovy class Example { static void main(String[] args) { // Using a simple println statement to print output to the console println('Hello World'); } } groovy e.groovy Hello World