たとえば、次のパニックステートメントの長い文字列を壊したいと思い
ます。
(panic "Truth-assignment length is longer than the number of propositions!")
試し
ましたが、どちらも機能しません。グーグルも何も出てこなかった。
(panic "Truth-assignment length is longer than the number \
of propositions!")
(panic "Truth-assignment length is longer than the number
of propositions!")
質問する
981 次
2 に答える
2
IDEの組み込みフォーマットでstring-appendを使用します。
(panic (string-append "Truth-assignment length is longer "
"than the number of propositions!"))
于 2010-02-06T04:07:24.113 に答える
1
すべてのScheme仕様が、長い文字列を分割する方法を定義しているわけではありません。質問に対する答えは、使用しているスキームによって異なります。R6RSには、最初に試したような方法が含まれていると思います。他の人はそのようなオプションを提供しないかもしれません、あなたにあなたの文字列の長さを減らすか、非常に長い行を持っているか、またはより小さな文字列でstring-appendを使用することを強制します。
これらのリンクをご覧ください:http: //www.mail-archive.com/r6rs-discuss@lists.r6rs.org/msg01810.html http://practical-scheme.net/gauche/(2008/2を検索/ 13)
于 2010-02-05T21:15:26.463 に答える