diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-06-03 13:31:20 -0600 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-06-03 13:31:20 -0600 |
commit | 790a78e3cf1ec8610699ed34255d459f84a92a18 (patch) | |
tree | a62702ae158c36167e3047f7be5d16197cff0859 /groovy.html.markdown | |
parent | 29bf4c1b9f353fa3321f663dc52c1b227a1ed9e5 (diff) |
Remove bare links
Diffstat (limited to 'groovy.html.markdown')
-rw-r--r-- | groovy.html.markdown | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/groovy.html.markdown b/groovy.html.markdown index 1dc6abb0..a9ca6836 100644 --- a/groovy.html.markdown +++ b/groovy.html.markdown @@ -6,7 +6,7 @@ contributors: filename: learngroovy.groovy --- -Groovy - A dynamic language for the Java platform [Read more here.](http://www.groovy-lang.org/) +[Groovy](http://www.groovy-lang.org/) is a dynamic language for the Java platform ```groovy /* @@ -299,7 +299,7 @@ def clos = { print it } clos( "hi" ) /* - Groovy can memoize closure results [1][2][3] + Groovy can memoize closure results */ def cl = {a, b -> sleep(3000) // simulate some time consuming processing @@ -438,12 +438,6 @@ Join a [Groovy user group](http://www.groovy-lang.org/usergroups.html) ## Books -* [Groovy Goodness] (https://leanpub.com/groovy-goodness-notebook) - -* [Groovy in Action] (http://manning.com/koenig2/) - -* [Programming Groovy 2: Dynamic Productivity for the Java Developer] (http://shop.oreilly.com/product/9781937785307.do) - -[1] http://roshandawrani.wordpress.com/2010/10/18/groovy-new-feature-closures-can-now-memorize-their-results/ -[2] http://www.solutionsiq.com/resources/agileiq-blog/bid/72880/Programming-with-Groovy-Trampoline-and-Memoize -[3] http://mrhaki.blogspot.mx/2011/05/groovy-goodness-cache-closure-results.html +* [Groovy Goodness](https://leanpub.com/groovy-goodness-notebook) +* [Groovy in Action](http://manning.com/koenig2/) +* [Programming Groovy 2: Dynamic Productivity for the Java Developer](http://shop.oreilly.com/product/9781937785307.do) |