Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
eval 関数を取得して文字列を読み取り、文字列内のコンテンツを評価する方法を理解しようとしています。
現在、私はそれを知っています
> (eval '(+ 1 2)) 3
しかし、私はラケットの使用に精通していません。だから現時点では、私はこれを行うことができるようにそれを取得しようとしています:
> (eval "(+ 1 2)") 3
有用なリソースへのアドバイスやリンクをいただければ幸いです。
readと併用したいopen-input-string。そのようです:
read
open-input-string
-> (eval (read (open-input-string "(+ 1 2)"))) 3
次のものも使用できますwith-input-from-string。
with-input-from-string
-> (with-input-from-string "(+ 1 2)" (lambda () (eval (read)))) 3