mirror of
https://github.com/EnergyMech/energymech.git
synced 2025-12-17 15:36:50 +00:00
11 lines
144 B
C
11 lines
144 B
C
|
|
#include <unistd.h>
|
||
|
|
#include <tcl.h>
|
||
|
|
Tcl_Interp *interp = NULL;
|
||
|
|
int main(void)
|
||
|
|
{
|
||
|
|
interp = Tcl_CreateInterp();
|
||
|
|
Tcl_Init(interp);
|
||
|
|
return(0);
|
||
|
|
}
|
||
|
|
|