|
Groovy example source code file (SliceTest.groovy)
The Groovy SliceTest.groovy source code
package groovy
class SliceTest extends GroovyTestCase {
void testListSlice() {
def list = [1, 2, 3, 4]
list[1,2] = 5
assert list == [1, 5, 5, 4]
list[0,1] = [5, 6]
assert list == [5, 6, 5, 4]
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy SliceTest.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.