1 package jwa_test 2 3 type stringer struct { 4 src string 5 } 6 7 func (s stringer) String() string { 8 return s.src 9 } 10
View as plain text