[Chicken-users] Problems using meroon

2007-12-16 Thread Luke McCarthy
I have installed Meroon with "chicken-setup meroon". I am using Chicken 2.6 on Linux. I have tried a simple example like this: (require-extension meroon) (define-class Point Object (x y)) But I get these compile-time warnings: Warning: variable `x' used but not imported Warning: variable `y' us

Re: [Chicken-users] Problems using meroon

2007-12-16 Thread Zbigniew
If you have not done so already, try: csc -X meroon file.scm ./file I think this error will occur if you leave the -X meroon out. On Dec 14, 2007 8:06 PM, Luke McCarthy <[EMAIL PROTECTED]> wrote: > I have installed Meroon with "chicken-setup meroon". I am using Chicken 2.6 on > Linux. I have tri

Re: [Chicken-users] Problems using meroon

2007-12-18 Thread Luke McCarthy
I am using "chicken" instead of "csc" but your suggestion works fine with: chicken -extend meroon I didn't see this mentioned anywhere on the wiki. Thanks! On Sunday 16 December 2007 22:12:40 Zbigniew wrote: > If you have not done so already, try: > > csc -X meroon file.scm > ./file > > I think

Re: [Chicken-users] Problems using meroon

2007-12-18 Thread Zbigniew
Great. I have added this tidbit to the meroon wiki page. On Dec 18, 2007 8:30 AM, Luke McCarthy <[EMAIL PROTECTED]> wrote: > I am using "chicken" instead of "csc" but your suggestion works fine with: > > chicken -extend meroon > > I didn't see this mentioned anywhere on the wiki. __