-
-
Save benjholla/fd4801f29e96c2408ae86b62e10ef2a1 to your computer and use it in GitHub Desktop.
Java Puzzle 12 (spot the bug if one exists)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Puzzle12 { | |
private static String answer = "Yes of course."; | |
public static void main(String[] args) { | |
String answer = "Not explicitly."; | |
System.out.println("Will puzzles be on the exams?"); | |
System.out.println(answer); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment