//TestFriendly.java
//Tests access to a method in the "default package".


public class TestFriendly
{
    public static void main(String[] args)
    {
        Friendly.sayHi();
    }
}

