I have the return code written, but nothing is being returned. At the top of the class I have the variable "d1" set to a value of 1. This is what I have written to return.
public void act()
{
it();
}
public int it()
{
return d1;
}

