uhmanoa-transpiler-project / shaka-scheme

The official repository for the UH Manoa Transpiler Project's Scheme interpreter, Shaka Scheme.
32 stars 24 forks source link

Proc/string symbol #50

Closed 1010jms closed 6 years ago

1010jms commented 6 years ago

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)

CinchBlue commented 6 years ago

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.