<div style="font-family: 'Times New Roman'; font-size: 16px;">Hello, <br _moz_dirty="" /><br _moz_dirty="" />I am now in the book How to design a programm second edition at the point I have to design functions.<br _moz_dirty="" /><br _moz_dirty="" />Now I wonder if I understand this part right so I have made this function. <br _moz_dirty="" /><br _moz_dirty="" />;String -&gt; String <br _moz_dirty="" />;This function takes out the first character of a given string with the name s<br _moz_dirty="" />; given &quot;roelof&quot; expect &quot;r&quot;<br _moz_dirty="" />; given &quot;example&quot; expect &quot;e&quot;<br _moz_dirty="" />(define (string_first s) <br _moz_dirty="" />  ( if (eq? (string? s) true) (string-ith  s 0 )&quot;You have not entered a string&quot;))<br _moz_dirty="" /><br _moz_dirty="" />So I hope somone can give me feedback on my first attempt so i can learn from it.<br _moz_dirty="" /><br _moz_dirty="" />Regards, <br _moz_dirty="" /><br _moz_dirty="" />Roelof<br _moz_dirty="" /><br /></div>