8-13: (Multi-statement Command)Function: Connects two statements for sequential execution without stopping.Description:• Unlike the output command ( ^), statements connected with the multi-statement commandare executed non-stop.• The multi-statement command can be used to link two calculation expressions or twocommands.• You can also use a carriage return indicated by _ in place of the multi-statement command._ ( Carriage Return)Function: Connects two statements for sequential execution without stopping.Description:• Operation of the carriage return is identical to that of the multi-statement command.• You can create a blank line in a program by inputting a carriage return only. Using a carriagereturn in place of the multi-statement command makes the displayed program easier to read.’ (Comment Text Delimiter)Function: Indicates comment text inserted inside a program.Description: Inputting an apostrophe (’) at the beginning of a line, causes everything fromthe beginning of the line up to the next Multi-statement Command (:), Carriage Return (_), orOutput Command (^) is treated as comment text, which is ignored during execution.k Program Commands (COMMAND)If~Then~(Else~)IfEndFunction: The Then-statement is executed only when the If-condition is true (non-zero). TheElse-statement is executed when the If-condition is false (0). The IfEnd-statement is alwaysexecuted following either the Then-statement or Else-statement.Syntax:If _:^Then _:^numeric expression_:^Else _:^_:^IfEnd