Last active
August 6, 2019 01:43
-
-
Save lotusirous/97e7eb44a66c7e396be4c5afe735785e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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