Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.stream.DoubleStream;

public class Main {
    public static void main(String[] args) {
        DoubleStream b = DoubleStream.of(1.1, 2.2, 3.3, 4.4, 5.5);
        boolean d = b.anyMatch(n -> n > 5);
        System.out.println(d);
    }
}