我需要遍历给定字符串中的字符——在 Ruby 中,我会这样做:
string = "blah"
string.each_char do |c|
puts c
end
我如何在 newLisp 中做到这一点?
我需要遍历给定字符串中的字符——在 Ruby 中,我会这样做:
string = "blah"
string.each_char do |c|
puts c
end
我如何在 newLisp 中做到这一点?
请注意,dostring
提供整数:
(let (str "")
(dostring (c str)
(println (format "%x" c))))
1f604
1f603
1f600
1f60a
而explode
提供字符:
(let (str "")
(dolist (c (explode str))
(println c)))
我想到了:
(let (str "blah")
(dostring (c str)
(println (char c) )))