Scilab にTCL/TKが組み込まれているかどうかを調べる
r = with_tk()
論理値
ScilabがTCL/TKインターフェイスと共に構築されている場合に %t, そうでない場合に %f を返します.
%t
%f
if with_tk() == %t then disp("Tk is available"); else disp("Tk is not available"); end