GroovyInAction icon indicating copy to clipboard operation
GroovyInAction copied to clipboard

Source code of the book Groovy in Action, 2nd edition

Results 1 GroovyInAction issues
Sort by recently updated
recently updated
newest added

Grammar wrong in GroovyInAction/listings/appD/Listing_D_02_Lists.groovy ``` Caught: Assertion failed: assert [1,2,3].permutations().toList() == [ [1, 2, 3], [2, 3, 1], [3, 2, 1], [3, 1, 2], [2, 1, 3], [1, 3, 2]...