Guest User

Untitled

a guest
Jan 21st, 2018
309
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.18 KB | None | 0 0
  1. package main
  2.  
  3.  import (
  4.          "reflect"
  5.  )
  6.  
  7.  type StringGiver interface {
  8.          GiveString() string
  9.  }
  10.  
  11.  func main() {
  12.          reflect.TypeOf(StringGiver)
  13.  
  14.  }
Add Comment
Please, Sign In to add comment