Skip to content

Instantly share code, notes, and snippets.

@damithadayananda
Created April 14, 2022 07:26
Show Gist options
  • Save damithadayananda/92a246c60e37762bc89a0c0e7903415c to your computer and use it in GitHub Desktop.
Save damithadayananda/92a246c60e37762bc89a0c0e7903415c to your computer and use it in GitHub Desktop.
type OldInterface interface {
a(_int int32)
b(_float float32)
}
type OldInterfaceType struct {
}
func (O OldInterfaceType)a(_int int32) {
}
func (O OldInterfaceType)b(_float float32) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment