File: checkTk.m

package info (click to toggle)
libtclobjc 1.4-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 316 kB
  • ctags: 78
  • sloc: objc: 2,116; makefile: 240; ansic: 186; sh: 175; tcl: 13
file content (10 lines) | stat: -rw-r--r-- 161 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#include "TkInterp.h"
 
int
main (int argc, const char **argv)
{
  id tk = [[TkInterp alloc] initWithArgc:argc argv:argv];
  
  [tk promptAndEval];
  exit(0);
}