The program:
IF "Gore" < "Bush" then
LET condition$ = "true"
ELSE
LET condition$ = "false"
END IF
PRINT "The logical expression "; "Gore < Bush "; "is ";condition$
END
Gives output:
The logical expression Gore < Bush is false