diff options
author | Hunter Stevens <onebree@gmail.com> | 2016-02-15 17:47:35 -0500 |
---|---|---|
committer | Hunter Stevens <onebree@gmail.com> | 2016-02-15 17:47:35 -0500 |
commit | d0b067b140d3d351ae9dee0b3e542935b7ca35d4 (patch) | |
tree | b83501b5b82240663029d7382f873fb369ea81c7 /groovy.html.markdown | |
parent | cffb7e6770b517a620115b3a9e1f82ca1dd82a98 (diff) | |
parent | cd16626c8f64a29d8235bd0ab21c7a32e248928f (diff) |
Resolve conflicts from merge
Diffstat (limited to 'groovy.html.markdown')
-rw-r--r-- | groovy.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/groovy.html.markdown b/groovy.html.markdown index 492c1ba2..94678c39 100644 --- a/groovy.html.markdown +++ b/groovy.html.markdown @@ -13,8 +13,8 @@ Groovy - A dynamic language for the Java platform [Read more here.](http://www.g /* Set yourself up: - 1) Install GVM - http://gvmtool.net/ - 2) Install Groovy: gvm install groovy + 1) Install SDKMAN - http://sdkman.io/ + 2) Install Groovy: sdk install groovy 3) Start the groovy console by typing: groovyConsole */ @@ -280,7 +280,7 @@ def clos = { print it } clos( "hi" ) /* - Groovy can memorize closure results [1][2][3] + Groovy can memoize closure results [1][2][3] */ def cl = {a, b -> sleep(3000) // simulate some time consuming processing |