One question
Is there a 'and' command in DinkC?
If(&a > 10 and &a < 20)
{
}
or would I have to write it like this:
If(&a >10)
{
If(&a < 20)
{
}
}
If(&a > 10 and &a < 20)
{
}
or would I have to write it like this:
If(&a >10)
{
If(&a < 20)
{
}
}
My guess is on the second one.
Logical operators does not exist within this very scripting language.