Re: speedup of modifying return values

2018-08-29 Thread Matt Wette
On 08/29/2018 03:58 AM, Stefan Israelsson Tampe wrote: Hi all, I'm trying to make a python clone in guile. Currently the code is slow and one of  the reasons is the following, in my pythoon return 1,2 returns a (values 1 2) in order to get python and scheme to interoperate. but for python

Re: FOSDEM 2019

2018-08-29 Thread Ludovic Courtès
Heya, Christopher Lemmer Webber skribis: > I added a talk topic: "A Guiler's Year of Racket". I think there's a > lot we could learn from our fellow friends in Racket-land, and I'd like > to share some of that! I’d be very interested in listening to it! Ludo’.

Re: speedup of modifying return values

2018-08-29 Thread Hans Åberg
> On 29 Aug 2018, at 20:46, Taylan Kammer wrote: > > Stefan Israelsson Tampe writes: > >> Hi all, I'm trying to make a python clone in guile. Currently the code is >> slow and one of the reasons is the following, >> >> in my pythoon >> >> return 1,2 >> >> returns a (values 1 2) in order

Re: speedup of modifying return values

2018-08-29 Thread Taylan Kammer
Stefan Israelsson Tampe writes: > Hi all, I'm trying to make a python clone in guile. Currently the code is > slow and one of the reasons is the following, > > in my pythoon > > return 1,2 > > returns a (values 1 2) in order to get python and scheme to interoperate. but > for python if you use

speedup of modifying return values

2018-08-29 Thread Stefan Israelsson Tampe
Hi all, I'm trying to make a python clone in guile. Currently the code is slow and one of the reasons is the following, in my pythoon return 1,2 returns a (values 1 2) in order to get python and scheme to interoperate. but for python if you use x = 1,2 then x is the tupple '(1 2) and in guile