Java tutorial
import java.util.stream.IntStream; public class Main { public static void main(String[] args) { IntStream i = IntStream.of(1, 2, 3, 4, 5, 6, 7); IntStream o = i.sequential(); o.forEach(System.out::println); } }