Skip to content

Instantly share code, notes, and snippets.

@grantseltzer
Created October 19, 2017 19:36
Show Gist options
  • Save grantseltzer/28a99cd024fc0b192c645e90304d76a2 to your computer and use it in GitHub Desktop.
Save grantseltzer/28a99cd024fc0b192c645e90304d76a2 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func cappy() {
x := [23]string{}
x[0] = ` _______ _______ _______ _______ _ _______ _____ `
x[1] = `( ____ \( ___ )( ____ )( ____ \|\ /|( \ ( ____ \ / ___ \ `
x[2] = `| ( \/| ( ) || ( )|| ( \/| ) ( || ( | ( \/ ( (___) )`
x[3] = `| | | (___) || (____)|| (_____ | | | || | | (__ \ / `
x[4] = `| | | ___ || _____)(_____ )| | | || | | __) / ___ \ `
x[5] = `| | | ( ) || ( ) || | | || | | ( ( ( ) )`
x[6] = `| (____/\| ) ( || ) /\____) || (___) || (____/\| (____/\ ( (___) )`
x[7] = `(_______/|/ \||/ \_______)(_______)(_______/(_______/ \_____/ `
x[8] = ` ) `
x[9] = ` ( `
x[10] = ` ) `
x[11] = ` ( `
x[12] = ` /\ .-"""-. /\ `
x[13] = ` //\\/ ,,, \//\\ `
x[14] = ` |/\| ,;;;;;, |/\| `
x[15] = ` //\\\;-"""-;///\\ `
x[16] = ` // \/ . \/ \\ `
x[17] = ` (| ,-_| \ | / |_-, |) `
x[18] = ` //'__\.-.-./__'\\ `
x[19] = ` // /.-(() ())-.\ \\ `
x[20] = ` (\ |) ';-;' (| /) `
x[21] = ` ' (| |) ' `
x[22] = ` \) (/ `
for i := range x {
fmt.Println(x[i])
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment