(atoi string)
The function atoi (ASCII to Integer) converts a given string to an integer.
Examples
: (atoi "32.1")
32
: (atoi "32.7")
: (atoi "55")
55
: (atoi "55abcde")
: (atoi "abcde")
0