Feather2 / feather2-javaexamples / src / main / java / ExampleArrayAccessViaMethods2.java
import uk.co.nickthecoder.feather.runtime.FeatherCollections; import java.util.List; public final class ExampleArrayAccessViaMethods2 { final public String test() { List<String> list = FeatherCollections.listOf("Hello", "World"); String first = list.get(0); return first; } }