I need to loop over the characters in a given string--in Ruby, I'd do something like this:
string = "blah"
string.each_char do |c|
puts c
end
How do I do this in newLisp?
I need to loop over the characters in a given string--in Ruby, I'd do something like this:
string = "blah"
string.each_char do |c|
puts c
end
How do I do this in newLisp?
Note that
dostring
supplies integers:whereas
explode
supplies the characters: