I must change a Inno Setup script. But I cannot compile it (every time I compile, I have to wait almost 1 hour for the build to finish). I need to know how to write the following expression that is in C++ pseudocode:
if ((A==B) || (A==C))
{
// do something
}
The question is how should I write that in Inno Setup script, and, if possible, do you know if this scripting language is specific for Inno Setup or can I find a guide somewhere? In the official website it's very hard to get what you want in a simple way, it's rather confusing and I couldn't find simple examples with OR
(the examples are very very basic).