Skip to content

Instantly share code, notes, and snippets.

@nbhusare
Last active April 19, 2018 20:35
Show Gist options
  • Save nbhusare/da10210da643091e056cc6e521f78afb to your computer and use it in GitHub Desktop.
Save nbhusare/da10210da643091e056cc6e521f78afb to your computer and use it in GitHub Desktop.
final List<Customer> customers = getCustomersFromDb();
IntStream.range(0, customers.size()).forEach(index -> {
print("Index " + index)
print("Customer " + customers.get(index));
}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment