Re: [racket-users] Racket for Smartphone Apps

2015-09-24 Thread j b
Another approach is to use something like cordova. It basically wraps an html/js app in a container that runs on the phone as an app. It's cross platform and exposes phone functionality through plugins. You could always write a racket webapi server if you needed server side processing. --

[racket-users] Storing functions in a hash

2015-05-20 Thread j b
I'm new to Racket/Scheme/Lisp. In addition to learning how to use the language, I also want to do it the Racket way. I am trying to put functions into a hash so I could call them using a hash key lookup (I just use 'random' as a filler in this example for what I really want. I have it