Industrialism had widened the technological gap between Africa and the West and industrialism led for a greater need for a secure and steady supply of raw materials, which Africa had in abundance, and for an increased desire for markets for the abundance of goods supplied.
// A single if statement
if (boolean expression)
Do statement;
// Or a single if with {}
if (boolean expression)
{
Do statement;
}
// A block if statement: { } required
if (boolean expression)
{
Do Statement1;
Do Statement2;
...
Do StatementN;
}
Note