Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
public interface GlobalConstants
{
static String name = "Chilly Billy";
static String address = "10 Chicken head Lane";
}
public class foo implements GlobalConstants
{
public foo()
{
System.err.println(name);
}
}