Keyword changes

From NEOSYS Dev Wiki
Revision as of 14:57, 2 April 2009 by Steve (talk | contribs) (New page: === DELETE become DELETERECORD === "delete" is a reserved keyword for c++ so delete filename,key becomes deleterecord(filevar,key) or in oo style filevar.deleterecord(key) === CH...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

DELETE become DELETERECORD

"delete" is a reserved keyword for c++ so

delete filename,key

becomes

deleterecord(filevar,key)

or in oo style

filevar.deleterecord(key)

CHAR() becomes CHR()

"char" is a reserved keyword in c++ so

charx=char(intvar)

becomes

charx=chr(intvar)

or in oo style

charx=intvar.chr()