Skip to content

Instantly share code, notes, and snippets.

@Phrancis
Last active April 5, 2016 14:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Phrancis/52f5c301aa2725e944a667e2ecc662ff to your computer and use it in GitHub Desktop.
Save Phrancis/52f5c301aa2725e944a667e2ecc662ff to your computer and use it in GitHub Desktop.
public class AsciiGoat {
public String getGoat() {
return
" ___." +
" // \\\\" +
"(( ''" +
" \\\\__," +
"/6 (%)\\," +
"(__/:";,;\\--____----_" +
"\a;; :';,:';`;,';,;';`,`_" +
" ;:,;;';';,;':,';';,-Y\\" +
" ;,;,;';';,;':;';'; Z/" +
" / ;,';';,;';,;';;'" +
" / / |';/~~~~~\\';;'" +
" ( K | | || |" +
" \\_\\ | | || |" +
" \\Z | | || |" +
" L_| LL_|" +
" LW/ LLW/'''";
}
public static void printGoat() {
System.out.println(getGoat());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment