File: hello.c

package info (click to toggle)
et 80b2-6
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 1,052 kB
  • ctags: 1,076
  • sloc: ansic: 10,311; tcl: 2,633; makefile: 180
file content (8 lines) | stat: -rw-r--r-- 206 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
/*
** The classic "Hello, World!" program written using ET.
*/
void main(int argc, char **argv){
   Et_Init(&argc,argv);
   ET( button .x -text "Hello, World!" -command exit; pack .x );
   Et_MainLoop();
}