Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.Month;
import java.time.Year;
import java.time.YearMonth;

public class Main {
    public static void main(String[] args) {
        Year y = Year.of(2014);
        YearMonth l = y.atMonth(Month.JANUARY);
        System.out.println(l);

    }
}