Merge pull request #12 from alexmdac/master

Reset text color after printing congratulatory message.
This commit is contained in:
Jason Thigpen
2015-03-05 09:12:21 -08:00

View File

@@ -44,7 +44,7 @@ func TestKoans(t *testing.T) {
aboutConcurrency()
aboutPanics()
fmt.Printf("\n%c[32;1mYou won life. Good job.\n\n", 27)
fmt.Printf("\n%c[32;1mYou won life. Good job.%c[0m\n\n", 27, 27)
}
func assert(o bool) {