Hello,
Is something wrong with my code here?
if(exist(Bookg1) == 0)
{
string litera$ = "g";
}
else
{
if(exist(Bookj1) == 0)
{
string litera$ = "j";
}
else
{
if(exist(Bookm1) == 0)
{
string litera$ = "m";
}
else
{
if(exist(Booko1) == 0)
{
string litera$ = "o";
}
else
{
if(exist(Bookr1) == 0)
{
string litera$ = "r";
}
else
{
if(exist(Bookt1) == 0)
{
string litera$ = "t";
}
else
{
type -a "out of range";
}
}
}
}
}
}
litera$=;
With the last command I get #Command Error!. Why?