Created
November 30, 2015 02:25
-
-
Save droxer/49701e9f9e927f4225ce to your computer and use it in GitHub Desktop.
Go embedded example.
This file contains 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 | |
import ( | |
"fmt" | |
) | |
type Pinger interface { | |
Ping() | |
} | |
type Ponger interface { | |
Pong() | |
} | |
type PingPonger struct { | |
Pinger | |
Ponger | |
} | |
func (p *PingPonger) Ping() { | |
fmt.Println("Ping") | |
} | |
func Call(pinger Pinger) { | |
pinger.Ping() | |
} | |
type PingPonger2 struct { | |
PingPonger | |
} | |
func (p *PingPonger2) Ping() { | |
fmt.Println("Ping2") | |
} | |
func main() { | |
rw := &PingPonger2{} | |
Call(rw) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment