public inbox for kawa@sourceware.org
 help / color / mirror / Atom feed
* Can't import srfi 101
@ 2015-07-05  8:07 Elías Alonso G.-Cornejo
  2015-07-05  8:59 ` Alex Mitchell
  0 siblings, 1 reply; 7+ messages in thread
From: Elías Alonso G.-Cornejo @ 2015-07-05  8:07 UTC (permalink / raw)
  To: kawa

This is probably a silly question, but how can I import the srfi 101
library (random access lists)? I've tried:

(import (srfi 101))

and:

(import (gnu kawa slib ralists))

Without any luck.

Thanks!

Elias.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can't import srfi 101
  2015-07-05  8:07 Can't import srfi 101 Elías Alonso G.-Cornejo
@ 2015-07-05  8:59 ` Alex Mitchell
  2015-07-05  9:26   ` Elías Alonso G.-Cornejo
  0 siblings, 1 reply; 7+ messages in thread
From: Alex Mitchell @ 2015-07-05  8:59 UTC (permalink / raw)
  To: "Elías Alonso G.-Cornejo"; +Cc: kawa mailing list

(sorry, resending as plain text for the benefit of the list)

I think you need to do:

(require 'srfi-101)

Alex

> On 5 Jul 2015, at 4:06 pm, Elías Alonso G.-Cornejo <eliasagc@gmail.com> wrote:
> 
> This is probably a silly question, but how can I import the srfi 101
> library (random access lists)? I've tried:
> 
> (import (srfi 101))
> 
> and:
> 
> (import (gnu kawa slib ralists))
> 
> Without any luck.
> 
> Thanks!
> 
> Elias.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can't import srfi 101
  2015-07-05  8:59 ` Alex Mitchell
@ 2015-07-05  9:26   ` Elías Alonso G.-Cornejo
  2015-07-05  9:57     ` Alex Mitchell
  0 siblings, 1 reply; 7+ messages in thread
From: Elías Alonso G.-Cornejo @ 2015-07-05  9:26 UTC (permalink / raw)
  To: Alex Mitchell; +Cc: kawa mailing list

> I think you need to do:
> (require 'srfi-101)
> Alex

I've tried, but I get this error:

#|kawa:1|# (require 'srfi-101)
/dev/stdin:1:1: unknown class gnu.kawa.slib.ralists
#|kawa:2|#

Does it work for you?

2015-07-05 10:59 GMT+02:00 Alex Mitchell <lexaay@gmail.com>:
> (sorry, resending as plain text for the benefit of the list)
>
> I think you need to do:
>
> (require 'srfi-101)
>
> Alex
>
>> On 5 Jul 2015, at 4:06 pm, Elías Alonso G.-Cornejo <eliasagc@gmail.com> wrote:
>>
>> This is probably a silly question, but how can I import the srfi 101
>> library (random access lists)? I've tried:
>>
>> (import (srfi 101))
>>
>> and:
>>
>> (import (gnu kawa slib ralists))
>>
>> Without any luck.
>>
>> Thanks!
>>
>> Elias.
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can't import srfi 101
  2015-07-05  9:26   ` Elías Alonso G.-Cornejo
@ 2015-07-05  9:57     ` Alex Mitchell
  2015-07-05 10:13       ` Elías Alonso G.-Cornejo
  0 siblings, 1 reply; 7+ messages in thread
From: Alex Mitchell @ 2015-07-05  9:57 UTC (permalink / raw)
  To: "Elías Alonso G.-Cornejo"; +Cc: kawa mailing list

Yes, it does - at least I don’t get any errors. I haven’t tried using anything from srfi 101.

$ kawa
#|kawa:1|# (require 'srfi-101)
#|kawa:2|# (exit)
$ kawa --version
Kawa 2.0
Copyright (C) 2014 Per Bothner
$ java -version
java version "1.8.0_45"
Java(TM) SE Runtime Environment (build 1.8.0_45-b14)
Java HotSpot(TM) 64-Bit Server VM (build 25.45-b02, mixed mode)

Note that I’m using the precompiled kawa 2.0 rather than the latest from svn.

Alex

> On 5 Jul 2015, at 5:26 pm, Elías Alonso G.-Cornejo <eliasagc@gmail.com> wrote:
> 
>> I think you need to do:
>> (require 'srfi-101)
>> Alex
> 
> I've tried, but I get this error:
> 
> #|kawa:1|# (require 'srfi-101)
> /dev/stdin:1:1: unknown class gnu.kawa.slib.ralists
> #|kawa:2|#
> 
> Does it work for you?
> 
> 2015-07-05 10:59 GMT+02:00 Alex Mitchell <lexaay@gmail.com>:
>> (sorry, resending as plain text for the benefit of the list)
>> 
>> I think you need to do:
>> 
>> (require 'srfi-101)
>> 
>> Alex
>> 
>>> On 5 Jul 2015, at 4:06 pm, Elías Alonso G.-Cornejo <eliasagc@gmail.com> wrote:
>>> 
>>> This is probably a silly question, but how can I import the srfi 101
>>> library (random access lists)? I've tried:
>>> 
>>> (import (srfi 101))
>>> 
>>> and:
>>> 
>>> (import (gnu kawa slib ralists))
>>> 
>>> Without any luck.
>>> 
>>> Thanks!
>>> 
>>> Elias.
>> 

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can't import srfi 101
  2015-07-05  9:57     ` Alex Mitchell
@ 2015-07-05 10:13       ` Elías Alonso G.-Cornejo
  2015-07-05 12:17         ` Andrea Bernardini
  0 siblings, 1 reply; 7+ messages in thread
From: Elías Alonso G.-Cornejo @ 2015-07-05 10:13 UTC (permalink / raw)
  To: Alex Mitchell; +Cc: kawa mailing list

I'm using a version built from svn a couple weeks ago.

$ java -jar kawa.jar --version
Kawa 2.0.1
Copyright (C) 2015 Per Bothner

$ java -version
java version "1.7.0_80"
Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)

2015-07-05 11:57 GMT+02:00 Alex Mitchell <lexaay@gmail.com>:
> Yes, it does - at least I don’t get any errors. I haven’t tried using anything from srfi 101.
>
> $ kawa
> #|kawa:1|# (require 'srfi-101)
> #|kawa:2|# (exit)
> $ kawa --version
> Kawa 2.0
> Copyright (C) 2014 Per Bothner
> $ java -version
> java version "1.8.0_45"
> Java(TM) SE Runtime Environment (build 1.8.0_45-b14)
> Java HotSpot(TM) 64-Bit Server VM (build 25.45-b02, mixed mode)
>
> Note that I’m using the precompiled kawa 2.0 rather than the latest from svn.
>
> Alex
>
>> On 5 Jul 2015, at 5:26 pm, Elías Alonso G.-Cornejo <eliasagc@gmail.com> wrote:
>>
>>> I think you need to do:
>>> (require 'srfi-101)
>>> Alex
>>
>> I've tried, but I get this error:
>>
>> #|kawa:1|# (require 'srfi-101)
>> /dev/stdin:1:1: unknown class gnu.kawa.slib.ralists
>> #|kawa:2|#
>>
>> Does it work for you?
>>
>> 2015-07-05 10:59 GMT+02:00 Alex Mitchell <lexaay@gmail.com>:
>>> (sorry, resending as plain text for the benefit of the list)
>>>
>>> I think you need to do:
>>>
>>> (require 'srfi-101)
>>>
>>> Alex
>>>
>>>> On 5 Jul 2015, at 4:06 pm, Elías Alonso G.-Cornejo <eliasagc@gmail.com> wrote:
>>>>
>>>> This is probably a silly question, but how can I import the srfi 101
>>>> library (random access lists)? I've tried:
>>>>
>>>> (import (srfi 101))
>>>>
>>>> and:
>>>>
>>>> (import (gnu kawa slib ralists))
>>>>
>>>> Without any luck.
>>>>
>>>> Thanks!
>>>>
>>>> Elias.
>>>
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can't import srfi 101
  2015-07-05 10:13       ` Elías Alonso G.-Cornejo
@ 2015-07-05 12:17         ` Andrea Bernardini
  2015-07-05 13:18           ` Elías Alonso G.-Cornejo
  0 siblings, 1 reply; 7+ messages in thread
From: Andrea Bernardini @ 2015-07-05 12:17 UTC (permalink / raw)
  To: kawa

I'm using latest version from svn, it works for me. 

I would try:

svn update
make clean
make

Andrea

On Sun, 5 Jul 2015 12:12:31 +0200
Elías Alonso G.-Cornejo <eliasagc@gmail.com> wrote:

> I'm using a version built from svn a couple weeks ago.
> 
> $ java -jar kawa.jar --version
> Kawa 2.0.1
> Copyright (C) 2015 Per Bothner
> 
> $ java -version
> java version "1.7.0_80"
> Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
> Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: Can't import srfi 101
  2015-07-05 12:17         ` Andrea Bernardini
@ 2015-07-05 13:18           ` Elías Alonso G.-Cornejo
  0 siblings, 0 replies; 7+ messages in thread
From: Elías Alonso G.-Cornejo @ 2015-07-05 13:18 UTC (permalink / raw)
  To: Andrea Bernardini; +Cc: kawa mailing list

Updating the svn repo fixed the issue.

Thanks!
Elias.

2015-07-05 14:17 GMT+02:00 Andrea Bernardini <andrebask@gmail.com>:
> I'm using latest version from svn, it works for me.
>
> I would try:
>
> svn update
> make clean
> make
>
> Andrea
>
> On Sun, 5 Jul 2015 12:12:31 +0200
> Elías Alonso G.-Cornejo <eliasagc@gmail.com> wrote:
>
>> I'm using a version built from svn a couple weeks ago.
>>
>> $ java -jar kawa.jar --version
>> Kawa 2.0.1
>> Copyright (C) 2015 Per Bothner
>>
>> $ java -version
>> java version "1.7.0_80"
>> Java(TM) SE Runtime Environment (build 1.7.0_80-b15)
>> Java HotSpot(TM) 64-Bit Server VM (build 24.80-b11, mixed mode)
>
>

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2015-07-05 13:18 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-05  8:07 Can't import srfi 101 Elías Alonso G.-Cornejo
2015-07-05  8:59 ` Alex Mitchell
2015-07-05  9:26   ` Elías Alonso G.-Cornejo
2015-07-05  9:57     ` Alex Mitchell
2015-07-05 10:13       ` Elías Alonso G.-Cornejo
2015-07-05 12:17         ` Andrea Bernardini
2015-07-05 13:18           ` Elías Alonso G.-Cornejo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).