Scilab Function
Last update : 14/2/2006

TCL_DeleteInterp - delete TCL interpreter

Calling Sequence

TCL_DeleteInterp(interp)
TCL_DeleteInterp()

Parameters

Description

This routine allows to delete a TCL slave interpreter or the main scilab TCL interpreter.

Examples

TCL_SetVar("Scilab","OK")
TCL_ExistVar("Scilab")
TCL_DeleteInterp()
TCL_ExistVar("Scilab")
TCL_CreateSlave('BisInterp')
TCL_ExistInterp('BisInterp')
TCL_SetVar("Scilab","OK",'BisInterp')
TCL_ExistVar("Scilab",'BisInterp')
TCL_DeleteInterp('BisInterp')
TCL_ExistInterp('BisInterp')

See Also

TCL_SetVar ,   TCL_ExistVar ,   TCL_CreateSlave ,   TCL_ExistInterp ,  

Author

Allan CORNET