failed attempts to intercept copy command when the cursor is in the empty text field...
[LeanCalc.git] / help / char
1 NAME
2     char - character corresponding to a value
3
4 SYNOPSIS
5     char(j)
6
7 TYPES
8     j           integer, 0 <= j < 256
9
10     return      string
11
12 DESCRIPTION
13     For j > 0, returns a string of length 1 with a character that has
14     the same value as j.  For j = 0, returns the null string "".
15
16 EXAMPLE
17     > print char(0102), char(0x6f), char(119), char(0145), char(0x6e)
18     B o w e n
19
20 LIMITS
21     none
22
23 LINK LIBRARY
24     none
25
26 SEE ALSO
27     ord
28