FenderLang / Fender

A functional scripting language, intended for string manipulation and general scripting on the command line
MIT License
13 stars 0 forks source link

Implement list functions to work directly on strings #81

Open FuzzyNovaGoblin opened 1 year ago

FuzzyNovaGoblin commented 1 year ago

insert should take a new string and insert it into the existing string at the given index swap, remove and removePass should work as though list() was called before and joinString() was called after

strvar.funcName(x)
# should be the same as 
strvar.list().funcName(x).joinStr()