Code cleaning, update Readme

This commit is contained in:
probandula
2016-10-26 18:32:11 +02:00
parent 3f7f13785f
commit eef61fca27
9 changed files with 1165 additions and 66 deletions

View File

@@ -15,7 +15,10 @@ func main() {
ascii := figlet4go.NewAsciiRender()
// Render the string
renderStr, _ := ascii.Render(str)
renderStr, err := ascii.Render(str)
if err != nil {
panic(err)
}
// Print the string
fmt.Print(renderStr)