Skip to content

Files

Latest commit

 

History

History
33 lines (22 loc) · 510 Bytes

code.md

File metadata and controls

33 lines (22 loc) · 510 Bytes

CODE

Syntax

code(<value>)

Description

Returns the ASCII code of the first character of the given string value. If the string is empty, the returned value is 0. Returned value type is UByte.

Examples

REM ASCII CODE of "A"
PRINT "ASCII CODE of A is "; CODE("A")
LET a$ = ""
PRINT "ASCII CODE of empty string is "; CODE(a$)

Remarks

  • This function is 100% Sinclair BASIC Compatible

See Also