Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Parameter name

Required

Description

variable

Yes

The value that Value you want to be printed. The value argument can be any printable characters: strings, chars, numbers, dates, intervals, etcand so on.

None

Code Block
if(isNotNull(dueDate))
{
  print("You should complete this task before " + dueDate);
}
else
  print("This task has no deadline!");

...