import java.util.List;
import com.fluent.collections.FluentList;
public class FluentCollectionExample {
public static void main(String[] args) {
List<Integer> numbers = new FluentList<Integer>()
.add(1)
.add(2)
.add(3)
.add(4)
.add(5);
List<Integer> result = numbers
}
}