From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Sascha Ziemann Newsgroups: gmane.lisp.guile.user Subject: How to format exact rationals? Date: Fri, 21 May 2010 14:45:48 +0200 Message-ID: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: dough.gmane.org 1274446857 13051 80.91.229.12 (21 May 2010 13:00:57 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 21 May 2010 13:00:57 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Fri May 21 15:00:50 2010 connect(): No such file or directory Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OFRqL-0001Wk-QF for guile-user@m.gmane.org; Fri, 21 May 2010 15:00:50 +0200 Original-Received: from localhost ([127.0.0.1]:33686 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFRqL-0005kt-2e for guile-user@m.gmane.org; Fri, 21 May 2010 09:00:49 -0400 Original-Received: from [140.186.70.92] (port=55204 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OFRq6-0004ma-Nj for guile-user@gnu.org; Fri, 21 May 2010 09:00:36 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OFRoQ-0006Om-5q for guile-user@gnu.org; Fri, 21 May 2010 08:58:51 -0400 Original-Received: from mail-bw0-f41.google.com ([209.85.214.41]:33221) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OFRoQ-0006Od-1C for guile-user@gnu.org; Fri, 21 May 2010 08:58:50 -0400 Original-Received: by bwz2 with SMTP id 2so109260bwz.0 for ; Fri, 21 May 2010 05:58:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=efSL4K+eBDTJgorCtUQAFWo9dXx+w6TgJUJfzFlYCuQ=; b=M8QsjTNhdtWZMJ+UAmF7AuaUZ2uKloLOOufQ+MpgG7l/FYFxTAGOk0rkOasmvBo3Nz /I7PvG0/VWa6Tc4hIXdY1DaUM/Fy1iGjv2hzT7cYkZ4s7kazZV+n2SBqAS78u3pIB2MO 05ewKYZBRfHGz2iKyGUOLjNzeUQnHKW9HVidQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=s6qELlIFqPLwkwm1YeCw8VlONIpVWHJQviAAqXEk081Hvn+bUxzqoeBVPEanL1KX0D QrkLbq0GLg5DUYbN2iKp2tzQsb128m/OFO3et42xHptqCIpHJ2aUjD48Gi4ernV/93qc aYtMUkNLXoazXBe1elAJGc8qJ7dswKJsRAlZc= Original-Received: by 10.204.134.87 with SMTP id i23mr21679bkt.125.1274445948511; Fri, 21 May 2010 05:45:48 -0700 (PDT) Original-Received: by 10.204.33.5 with HTTP; Fri, 21 May 2010 05:45:48 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:7797 Archived-At: Is this the intended behavior for exact rationals? guile> (format #f "~f" (/ 1 3)) FORMAT: error with call: (format #f "~f<===" ===>1/3 ) illegal character `/' in number->string If so how to format them?