We've already met several built-in constants. Here's the complete list:
TRUE, FALSE
TRUE is -1 and FALSE is zero.
NIL
NIL is zero.
ALL
ALL is -1.
GADGETSIZE
OLDFILE, NEWFILE
Open to open an old or new file.
See the AmigaDOS Manual for more details.
STRLEN
s and then its length:
PROC main()
DEF s:PTR TO CHAR, len
s:='12345678'
len:=STRLEN
WriteF(s)
WriteF('\nis \d characters long\n', len)
ENDPROC
Go to the Next or Previous section, the Detailed Contents, or the Amiga E Encyclopedia.