Topic : The GFA-Basic Compendium Author : GFA Systemtechnik GmbH Version : GFABasic.HYP v2.98 (12/31/2023) Subject : Documentation/Programming Nodes : 899 Index Size : 28056 HCP-Version : 3 Compiled on : Atari @charset : atarist @lang : @default : Document not found @help : Help @options : +g -i -s +z @width : 75 @hostname : STRNGSRV @hostname : CAB @hostname : HIGHWIRE @hostname : THING View Ref-Filex<>y x, y: exp This operator checks whether two numerical or string expressions are unequal. If this is the case, then the statement x<>y is logically TRUE. If x and y are the same, then the result of x<>y is logically FALSE. The expressions x<>y and x><y are equivalent. Example: PRINT "test"<>"test" PRINT -1<>4-5 --> 0 and 1 appear on the screen.