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.
このように計算時間に変数を設定したい
(setf a (time (+ 1 1)))
しかし、時間の代わりにこれを取得します
Break 1 [7]> a 2
計算時間を設定するにはどうすればよいですか?
Lars の回答を参照してください。
TIME実装に依存する情報をトレース出力に書き込みます。出力を文字列にしたい場合:
TIME
(with-output-to-string (*trace-output*) (time (+ 1 1)))