From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: Blog: Guix packaging tutorial Date: Tue, 02 Oct 2018 21:46:26 +0200 Message-ID: <87sh1ot9m5.fsf@elephly.net> References: <87in397jsd.fsf@ambrevar.xyz> <20180913191151.GA1865@jurong> <87woro5ocf.fsf@ambrevar.xyz> <20180914113302.elqrk3tvdkln2cde@thebird.nl> <87o9cmj0fc.fsf@ambrevar.xyz> <87mus6iypf.fsf@ambrevar.xyz> <87zhw02ea9.fsf@mdc-berlin.de> <87o9cex112.fsf@ambrevar.xyz> <87efdau5x2.fsf@gnu.org> <87murywuvn.fsf@ambrevar.xyz> <87lg7go8cv.fsf@gnu.org> <87va6kuyk4.fsf@ambrevar.xyz> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50277) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g7Qcz-00067E-L6 for guix-devel@gnu.org; Tue, 02 Oct 2018 15:46:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g7Qcy-0002Xr-Rt for guix-devel@gnu.org; Tue, 02 Oct 2018 15:46:41 -0400 In-reply-to: <87va6kuyk4.fsf@ambrevar.xyz> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Pierre Neidhardt Cc: Ricardo Wurmus , guix-devel , guix-blog@gnu.org Pierre Neidhardt writes: > Apparently the formatting of the REPL was also confusing ("What is this > dollar thing, is it some result?" kind of confusion). > What about changing the formatting to > > --8<---------------cut here---------------start------------->8--- > (display (string-append "Hello " foo "\n")) > =3D> Hello World > --8<---------------cut here---------------end--------------->8--- > > Or should I use a Unicode arrow (e.g. =E2=87=92 in the Guile manual)? The dollar thing is for return values. The Guile manual uses the arrow, but that would be incorrect in the above example as =E2=80=9CHello world=E2= =80=9D is not returned by =E2=80=9Cdisplay=E2=80=9D =E2=80=94 it is merely a side effect.= In the Guile manual this would be indicated by =E2=80=9C=E2=8A=A3=E2=80=9D. --=20 Ricardo