package main

import (
  "fmt"
  "package2"
)

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