Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Comparator;
import java.util.function.BinaryOperator;

public class Main {
    public static void main(String[] args) {
        BinaryOperator<Integer> bi = BinaryOperator.maxBy(Comparator.reverseOrder());
        System.out.println(bi.apply(2, 3));
    }
}