Question: Write a function atoi : string -> int (i.e., ASCII to integer) such that a call of the function such as (atoi 59) would return

Write a function atoi : string -> int (i.e., "ASCII to integer") such that a call of the function such as (atoi "59") would return the integer 59. You may assume that the characters in the string are all decimal digits. Hint: Consider using the function Lib.explode : string -> char list. For example, (Lib.explode "314") returns the list of characters ['3'; '1'; '4'].

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!