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
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’.
> 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
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
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