projects
/
LeanCalc.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
failed attempts to intercept copy command when the cursor is in the empty text field...
[LeanCalc.git]
/
help
/
ord
1
NAME
2
ord - return integer corresponding to character value
3
4
SYNOPSIS
5
ord(c)
6
7
TYPES
8
c string
9
10
return int
11
12
DESCRIPTION
13
Return the integer value of the first character of a string.
14
15
EXAMPLE
16
> print ord("DBell"), ord("chongo"), ord("/\../\"), ord("!")
17
68 99 47 33
18
19
LIMITS
20
none
21
22
LINK LIBRARY
23
none
24
25
SEE ALSO
26
char
27