Skip to content

Instantly share code, notes, and snippets.

@lotusirous
Last active August 6, 2019 01:43
Show Gist options
  • Select an option

  • Save lotusirous/97e7eb44a66c7e396be4c5afe735785e to your computer and use it in GitHub Desktop.

Select an option

Save lotusirous/97e7eb44a66c7e396be4c5afe735785e to your computer and use it in GitHub Desktop.
package main
type Jedi interface {
HasForce() bool
}
type Knight struct {
}
var _ Jedi = (*Knight)(nil)
func main() {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment