File: checkTcl.m

package info (click to toggle)
libtclobjc 1.4-3
  • links: PTS
  • area: main
  • in suites: potato
  • size: 332 kB
  • ctags: 78
  • sloc: objc: 2,116; makefile: 240; ansic: 186; sh: 177; tcl: 13
file content (13 lines) | stat: -rw-r--r-- 212 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef NeXT
#include "objc-gnu2next.h"
#endif

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