Mo DeJong wrote:
> 
> Do you mean Jacl? It is a Tcl port written in Java. The homepage is at
> http://www.scriptics.com/java
> 
> With Jacl, you can allocate Java objects and call methods on them like
> this.
> 
> set str [java::new String "I am a Java string"]
> set hc [$str hashCode]
> 
> It is very cool stuff.

And don't forget rhino (http://www.mozilla.org/rhino, JavaScript):
  js> c = java.awt.Frame;
  js> o = new c("Frame");
  js> o.show();

and Kawa (http://www.gnu.org/software/kawa/, Scheme):
  #kawa:1# (define f (make <java.awt.Frame>))
  #kawa:2# (invoke f 'show)

Although I'm sure the Beanshell is what the original poster wanted.

-- 
Weiqi Gao
[EMAIL PROTECTED]


----------------------------------------------------------------------
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to