2020-06-18 10:11:10 +02:00

12 lines
110 B
Go

package main
import (
"fmt"
"package2"
)
func main () {
fmt.Println ("Shall we?")
package2.Foo ()
}