Hello,
I would like to express following line of code:
var myLogReader = new YAHOO.widget.LogReader('myLogger');
in Parenscript-Lisp. According to the reference manual it might be something like:
(defvar my-log-reader (new (@ *yahoo* widget LogReader "myLogger")))
but I get a completely different result.
What is the proper way to express such kind of statements in Parenscript?
By the way, contrary to the reference manual, `var' form is not turned into a variable declaration in JavaScript.
Thanks, Victor