If-Else Example 1
number monthNumber = month(currentDate());
string monthName = formatDate(currentDate(), "MMMM");
if(monthNumber > 0) {
runnerLog("Example 1: It is the month of " + monthName + "!");
}
number monthNumber = month(currentDate());
string monthName = formatDate(currentDate(), "MMMM");
if(monthNumber > 0) {
runnerLog("Example 1: It is the month of " + monthName + "!");
}