public class MyClassName
{
// you can define a class variable here
public static void main( )
{
// your statements will go here
// your calls to method1 will have the form: method1()
}
public static void method1( )
{
// your statements will go here
}
}