Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public class Main {
  2. public static void main(String[] args) {
  3. some(false);
  4. }
  5. public static void some(boolean ...args) {
  6. if (args.length == 0 || args[0]) {
  7. System.out.println("Gotcha!");
  8. }
  9. }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement