Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is that possible to embbed Scheme(lisp) interpreter into iPhone app?

I'm finding embeddable Scheme interpreter(or JIT compiler or anything) into Cocoa Touch. I think just a C compatible Scheme engine may be fine. Please recommend some. I wish it's MIT/BSD style free license, but commercials are fine too.

And.. does Apple AppStore allow embedded scripting like Scheme?

like image 811
eonil Avatar asked Feb 10 '10 18:02

eonil


2 Answers

I think James Long's blog is exactly what you're looking for: http://jlongster.com/software/iphone/scheme-iphone-example/

the above link is dead, try https://github.com/jlongster/gambit-iphone-example instead.

like image 76
acfoltzer Avatar answered Nov 07 '22 05:11

acfoltzer


You could do this so long as there was no DOWNLOADED or USER-ENTERED script/code. If all you were using Scheme for was internal scripting, that would be allowed.

like image 3
Ben Gottlieb Avatar answered Nov 07 '22 05:11

Ben Gottlieb