[racket-users] Re: Racket v6.7

2016-10-27 Thread byrondavies
Thank you, Jay McCarthy, for making it possible to create Racket-based apps for 
Android.  This was a necessity for our Global Learning XPRIZE project, and it's 
working superbly. I really like the capability you provided to develop on the 
Mac platform, test in a Mac-based simulator, and then export the code to an 
Android app.

Byron Davies, CEO
Black Swan Learning
http://blackswanlearning.com

On Wednesday, October 26, 2016 at 4:36:46 PM UTC-7, Vincent St-Amour wrote:
> Racket version 6.7 is now available from
> 
> http://racket-lang.org/
> 
> - Racket supports building graphical applications on Android through the
>   racket-android project: https://github.com/jeapostrophe/racket-android
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Re: Racket v6.7

2016-10-27 Thread Vincent St-Amour
This looks like an import conflict.

In 6.7, we added a `vector-sort!` function to `racket/vector`. There was
already one in `rnrs/sorting-6`. So if your program requires both
libraries, you will have a conflict.

You can resolve the conflict by looking for places where you require
`rnrs/sorting-6`, and either adding an `except-in` form to your
`require`, to avoid requiring `vector-sort!`, or maybe even skip using
that library altogether.

Sorry for the trouble.

Vincent




On Thu, 27 Oct 2016 09:31:00 -0500,
Some Dude wrote:
> 
> Great news, especially the integrated Android support.
> 
> However, I get this for one of my programs:
> 
> module: identifier already imported from a different source in:
>   vector-sort!
>   rnrs/sorting-6
>   racket/gui
> 
> But what's worse, it doesn't show where the bug occurs, even though debugging 
> is switched on in the language. (The program uses racket/gui).
> 
> Is there a fix for this? Is this a known problem?

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[racket-users] Re: Racket v6.7

2016-10-27 Thread Some Dude
Great news, especially the integrated Android support.

However, I get this for one of my programs:

module: identifier already imported from a different source in:
  vector-sort!
  rnrs/sorting-6
  racket/gui

But what's worse, it doesn't show where the bug occurs, even though debugging 
is switched on in the language. (The program uses racket/gui).

Is there a fix for this? Is this a known problem?

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.