[Tcl Java] jacl-yaci: (JACL Yet Another Command Improved)

2000-08-15 Thread Christian Krone
Hello, I attached two patches and a Java class (which is not new, but contains so many differences that a patch is bigger than the complete code). It contains the following new features: - Expressions with , || or ?: now accept boolean string values. - No error for [lreplace {} end end]. -

[Tcl Java] Tcl and Java interaction

2000-08-15 Thread Toga Hartadinata
I am wondering can the tcl shell used the return value of a java function call ? Here is some code example let's say i have a java class public class test{ public int run() { return 10; } } and then in tcl shell set t [java::new test] now can it do set result [$t