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
git log --graph --abbrev-commit --decorate --oneline $(git merge-base origin/master HEAD)~1.. |
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 Quine { | |
public static void main(String[] args) { | |
char quote = 34; | |
String[] code = { | |
"public class Quine {", | |
" public static void main(String[] args) {", | |
" char quote = 34;", | |
" String[] code = {", | |
" };", | |
" for(int i=0; i<4; i++){", |