mirror of
https://github.com/traefik/yaegi.git
synced 2026-06-01 18:37:56 +00:00
13 lines
114 B
Go
13 lines
114 B
Go
package main
|
|
|
|
type Edge interface {
|
|
ReverseEdge() Edge
|
|
}
|
|
|
|
func main() {
|
|
println("hello")
|
|
}
|
|
|
|
// Output:
|
|
// hello
|