12 lines
154 B
Go
Raw Normal View History

2015-12-02 15:19:39 +00:00
package serial
type String interface {
String() string
}
type StringLiteral string
func (this StringLiteral) String() string {
return string(this)
}