Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.time.Month;
import java.time.MonthDay;

public class Main {

    public static void main(String[] args) {
        Month month = Month.JULY;
        int dayOfMonth = 14;

        MonthDay jugIL = MonthDay.of(month, dayOfMonth);

        System.out.println(jugIL);
    }
}