Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Is Tk implemented in Jacl?

implemented jacl tk
0
Posted

Is Tk implemented in Jacl?

0

Jacl is an implementation of Tcl, not Tk. The Swank project is a set of Java classes that wrap Java’s swing widgets into Tk commands. Swank is very pre-alpha, and we need developers to jump in and help out. How do I create an array of Java objects? An array object is created with the java::new command. To create an int[5] array with values 11 through 15, you would enter: set arrayObj [java::new {int[]} 5 {11 12 99 14 15}] $arrayObj set 2 13 Note that in the above example the array type is passed with brackets around it. This is required because the square brace syntax is used to indicate a command substitution in Tcl, so passing int[] instead of {int[]} generates an error because Tcl interprets [] as the empty string and passes the string int to the java::new command. How are 64 bit values handled? Jacl does not support 64 bit values in Tcl scripts. Tcl 8.4 does support 64 bit values in regular Tcl commands in some configurations. Both Jacl and Tcl Blend support passing 64 bit values t

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123