Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.stream.IntStream;

public class Main {

    public static void main(String[] args) throws Exception {
        IntStream.range(1, 4).mapToObj(i -> "a" + i).forEach(System.out::println);
    }

}