Code Comments
Programming Forum and web based access to our favorite programming groups.Hello, I'd like to announce addition to the list of Scheme interpreters written in the Python language. Pysch: http://pysch.sourceforge.net/ I wrote Pysch for my own research goals, but I think that it may be useful for general public. Pysch relies on Bigloo to preprocess a source code of Scheme programs (expand macros) and to save the result as XML. Pysch interprets only the refined XML. Pysch supports only a subset of the Scheme functions library. Anyway, the subset is big enough to run SXPath and SXSLT code. Regards, Oleg
Post Follow-up to this messageolepar@gmail.com (Oleg Paraschenko) writes: > Pysch: > http://pysch.sourceforge.net/ > > Pysch relies on Bigloo to preprocess a source code of > Scheme programs (expand macros) and to save the result > as XML. Pysch interprets only the refined XML. This should get listed as the most bizarre implementation methodolgy ever adopted. I think you have definitively showed the equivalence between s-exprs and XML, if nothing else. And for the tone-of-voice challenged, I do not intend to convey sarcasm. Rather I am amazed that such an approach works well enough to: > Pysch supports only a subset of the Scheme functions > library. Anyway, the subset is big enough to run > SXPath and SXSLT code. How fast? david rush -- With guns, we are citizens. Without them, we are subjects. -- YZGuy, IPL
Post Follow-up to this messageDavid Rush wrote: > olepar@gmail.com (Oleg Paraschenko) writes: > This should get listed as the most bizarre implementation methodolgy > ever adopted.=20 Is that a challenge? --=20 Jens Axel S=F8gaard
Post Follow-up to this messageHello David, David Rush <kumoyuki@gmail.com> wrote in message news:<ck65nd$9vf$1@pixie.nscp.aoltw.net>... > And for the tone-of-voice challenged, I do not intend to convey > sarcasm. Rather I am amazed that such an approach works well > enough to: I'm interested in generative programming and virtual machines. One of the my suggestions is that it is reasonable to use a minimal lisp-like core system and scheme-like library as an universal virtual machine. Indeed, Pysch was a test if this approach works. Hm, maybe I should write an article now? > > How fast? As slow as possible. Speed was sacrificed in order to produce a correctly working prototype as soon as possible. On my Linux computer (PII 450MHz, 512Mb RAM), calculation of the Ackermann(3,4) gives: $ time sh -c '(cat ack.xml | (cd ../pysch/pysch/vm; python eval.py))' Ackermann(3,4) is 125 #unspecified 56.59user 0.26system 1:10.39elapsed 80%CPU (0avgtext+0avgdata 0maxresident)k 0inputs+0outputs (1020major+791minor)pagefaults 0swaps -- Oleg
Post Follow-up to this messageJens Axel Søgaard <usenet@soegaard.net> writes: > David Rush wrote: > > > > Is that a challenge? As long as you're not using yaks and rope for processing and storage, yes. And no bootstrapping from an existing Scheme implementation. My intent is to rule out Oleg Kiselyov's syntactic lambdas, which arguably deserves the second-place prize. david rush -- I mean really, why not?
Post Follow-up to this messageHello, olepar@gmail.com (Oleg Paraschenko) wrote in message news:<1e015c2a.0410070804.6e84016d@posting.google.com>... ... > > I'd like to announce addition to the list of Scheme > interpreters written in the Python language. > > Pysch: > http://pysch.sourceforge.net/ > New version is appeared recently. I improved environment lookup code and big Scheme programs now run 3 times faster. But it is not very important. More interesting is representation of Python AST as XML (indeed, SXML) and transformation of AST using XSLT (in fact, SXSLT). I think that SXML and SXSLT users may find it interesting: http://pysch.sourceforge.net/ast.html -- Oleg
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.