New genre overview

This commit is contained in:
2016-11-03 13:01:06 +09:00
parent 8f3ef01285
commit 5f1a77e46f
4 changed files with 98 additions and 84 deletions

View File

@ -4,7 +4,7 @@ import "fmt"
// Converts anything into a string
func s(v interface{}) string {
return fmt.Sprintf("%v", v)
return fmt.Sprint(v)
}
// Contains ...