Skip to content

Instantly share code, notes, and snippets.

@hatarist
Created February 27, 2016 20:06
Show Gist options
  • Save hatarist/a00199d8b5e1ffcd8a74 to your computer and use it in GitHub Desktop.
Save hatarist/a00199d8b5e1ffcd8a74 to your computer and use it in GitHub Desktop.
(18+, censored) Goatse: A perfect «hello.jpg world» on Go.
package main
import "fmt"
func main() {
hellotxt := `
* * * * * * * * * * * * * * * * * * * * * * * * *
* goatse / hello.jpg world *
* *
* / \ \ / \ *
*| | \ | | *
*| '. | | : *
*' | | \| | *
* \ | / / \\\ ____ \\ : *
* \ \/ ___~~ ~____| \ | *
* \ \__~ ~__\ | *
* \_ ############################| | *
* \ ############################\ | *
* \ ############################ | / *
* /\ ############################ |_/ *
* / /\############################ / \ *
* | (############################ \ *
* | ############################ | *
* | \ ############################ | *
* | \_ ############################ _/ | *
* | ############################ | *
* | ############################ | *
* | ############################ |*
* | ############################ |*
* | / | | | |*
* | | | | | |*
* * * * * * * * * * * * * * * * * * * * * * * * *
`
fmt.Println(hellotxt)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment