Desktop network apps, that is.
Tcl Developer Site
I'm considering using it for a project and was just curious if the binaries are as cross-platform as it claims to be. I'd rather use something like this than Java or php->titanium.
Here's some of the syntax:
Tcl Developer Site
I'm considering using it for a project and was just curious if the binaries are as cross-platform as it claims to be. I'd rather use something like this than Java or php->titanium.
Here's some of the syntax:
Code:
set a 44
set b [expr $a*4]
Code:
set cmd expr
set x 11
$cmd $x*$x
Code:
proc power {base p} {
set result 1
while {$p > 0} {
set result [expr $result * $base]
set p [expr $p - 1]
}
return $result
}