Created
April 27, 2016 12:16
-
-
Save yyYank/883bc66588129c2beda4771376195e0f to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Hello { | |
| public static void main(String... args){ | |
| if(java.util.Arrays.stream("H,e,l,l,o, W,o,r,l,d,!".split(",")).peek(System.out::print).count() == 0){} | |
| } | |
| } |
畜生
public class Hello {
public static void main(String... args){
if(System.out.printf("Hello World!" + System.lineSeparator()) != null){}
}
}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
もしかしてStream.ofでいいんちゃうか