Merge pull request #246 from WeiChienHsu/patch-1

"e".equals("e")
This commit is contained in:
LinuxMercedes 2018-12-08 21:26:50 -06:00 committed by GitHub
commit 28f63742ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

4
e.java
View File

@ -1,8 +1,8 @@
public class e {
public static void main(String[] args) {
while(true) {
System.out.print("e");
while("e".equals("e")) {
System.out.println("e");
}
}
}