
public class CopyVar
{
    public static void main(String[] args)
    {
        double x = 4;

        double xCopy;

        xCopy = x;       // copy is now a copy of x

        xCopy = 99;      // copy is update, x is unchanged
    }
}
