Guest User

Untitled

a guest
Sep 25th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. import java.util.*;
  2.  
  3. /**
  4. * Hello, world! program using Optional monad
  5. */
  6. public class HelloWorld {
  7. public static void main(final String[] args) {
  8. Optional.of("Hello, world!").ifPresent(System.out::println);
  9. }
  10. }
Add Comment
Please, Sign In to add comment