File: checkTcl.m

package info (click to toggle)
libtclobjc 1.3-0
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 316 kB
  • ctags: 77
  • sloc: objc: 2,108; makefile: 237; ansic: 186; sh: 174; tcl: 13
file content (12 lines) | stat: -rw-r--r-- 210 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
#ifdef NeXT
#include "objc-gnu2next.h"
#endif

#include "TclInterp.h"
 
 int main (int argc, char *argv[])
 {
   id tcl = [[TclInterp alloc] initWithArgc:argc argv:argv];
   [tcl promptAndEval];
   exit(0);
 }