Skip to content

Instantly share code, notes, and snippets.

@ckeyer
Created July 6, 2015 16:32
Show Gist options
  • Save ckeyer/72bdd1584233015563c8 to your computer and use it in GitHub Desktop.
Save ckeyer/72bdd1584233015563c8 to your computer and use it in GitHub Desktop.
闲得DT写的
package main
import (
"fmt"
)
type CkString string
func (c *CkString) String() string {
return fmt.Sprint(c)
}
func main() {
var c CkString = "haha"
c.String()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment