Re: output some string

2018-06-17 Thread Gianmaria Lari
On Sat, 16 Jun 2018 at 21:49, Thomas Morley wrote: > > > 2018-06-16 16:56 GMT+02:00 Gianmaria Lari : > >> >> >> On Fri, 15 Jun 2018 at 22:47, Thomas Morley >> wrote: >> >>> 2018-06-15 20:11 GMT+02:00 Aaron Hill : >>> > On 2018-06-15 09:40, Gianmaria Lari wrote: >>> >> >>> >> I'm trying to write

Re: output some string

2018-06-16 Thread Thomas Morley
2018-06-16 16:56 GMT+02:00 Gianmaria Lari : > > > On Fri, 15 Jun 2018 at 22:47, Thomas Morley > wrote: > >> 2018-06-15 20:11 GMT+02:00 Aaron Hill : >> > On 2018-06-15 09:40, Gianmaria Lari wrote: >> >> >> >> I'm trying to write some code in scheme. At the moment I do it using >> >> frescobaldi

Re: output some string

2018-06-16 Thread Gianmaria Lari
On Fri, 15 Jun 2018 at 22:47, Thomas Morley wrote: > 2018-06-15 20:11 GMT+02:00 Aaron Hill : > > On 2018-06-15 09:40, Gianmaria Lari wrote: > >> > >> I'm trying to write some code in scheme. At the moment I do it using > >> frescobaldi and I need some help for the output. > >> The following code

Re: output some string

2018-06-15 Thread Gianmaria Lari
On Fri, 15 Jun 2018 at 19:33, Simon Albrecht wrote: > On 15.06.2018 18:40, Gianmaria Lari wrote: > > I'm trying to write some code in scheme. At the moment I do it using > > frescobaldi and I need some help for the output. > > The following code > > > > \version "2.19.81" > > #(define (f

Re: output some string

2018-06-15 Thread Thomas Morley
2018-06-15 22:21 GMT+02:00 Thomas Morley : > If a list contains only strings it's also possible to do: > > (string-concatenate '("foo" "bar" "buzz")) > => > "foobarbuzz" And if a list contains only characters: (list->string (list #\a #\b #\c)) => "abc" Ofcourse it would be best to know what

Re: output some string

2018-06-15 Thread Thomas Morley
2018-06-15 20:11 GMT+02:00 Aaron Hill : > On 2018-06-15 09:40, Gianmaria Lari wrote: >> >> I'm trying to write some code in scheme. At the moment I do it using >> frescobaldi and I need some help for the output. >> The following code >> >> \version "2.19.81" >> #(define (f w) w) >> $(f "Hello") >>

Re: output some string

2018-06-15 Thread Gianmaria Lari
On Fri, 15 Jun 2018 at 20:12, Aaron Hill wrote: > On 2018-06-15 09:40, Gianmaria Lari wrote: > > I'm trying to write some code in scheme. At the moment I do it using > > frescobaldi and I need some help for the output. > > The following code > > > > \version "2.19.81" > > #(define (f w) w) > >

Re: output some string

2018-06-15 Thread Aaron Hill
On 2018-06-15 09:40, Gianmaria Lari wrote: I'm trying to write some code in scheme. At the moment I do it using frescobaldi and I need some help for the output. The following code \version "2.19.81" #(define (f w) w) $(f "Hello") generates a pdf file containing "Hello". If my function f is

Re: output some string

2018-06-15 Thread Simon Albrecht
On 15.06.2018 18:40, Gianmaria Lari wrote: I'm trying to write some code in scheme. At the moment I do it using frescobaldi and I need some help for the output. The following code \version "2.19.81" #(define (f w) w) $(f "Hello") generates a pdf file containing "Hello". If my

output some string

2018-06-15 Thread Gianmaria Lari
I'm trying to write some code in scheme. At the moment I do it using frescobaldi and I need some help for the output. The following code \version "2.19.81" #(define (f w) w) $(f "Hello") generates a pdf file containing "Hello". If my function f is called passing something that is not a string