All of the standard procedures for 'symbol' are created and tested, and most of the standard procedures for 'string' are created with a majority of them tested.
This code is from last semester. As we have switched focus by handing off ownership for the standard procedures to the Libraries team, let's leave this off until we decide to return to it.
All of the standard procedures for 'symbol' are created and tested, and most of the standard procedures for 'string' are created with a majority of them tested.
Implemented Symbol Procedures: (symbol=? symbol1 symbol2 ...) (symbol->string symbol) (string->symbol string)
Implemented String Procedures: (make-string k) (make-string k char) (string char ...) (string-ref k) (string-set! string k char) (string=? string1 string2 ...) (string<? string1 string2 ...) (string>? string1 string2 ...) (string<=? string1 string2 ...) (string>=? string1 string2 ...) (list->string list)