Skip to content

Instantly share code, notes, and snippets.

@benjholla
Created September 5, 2018 15:36
Show Gist options
  • Save benjholla/73044f36a99d42653bdbebc40343c689 to your computer and use it in GitHub Desktop.
Save benjholla/73044f36a99d42653bdbebc40343c689 to your computer and use it in GitHub Desktop.
Java Puzzle 4 (spot the bug if one exists)
public class Puzzle4 {
public static void main(String[] args) {
System.out.print("iexplore:");
http://www.google.com;
System.out.println(":maximize");
}
}
@benjholla
Copy link
Author

Adapted from Java Puzzlers: Traps, Pitfalls, and Corner Cases - Puzzle #22

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment