File: hello_world.c

package info (click to toggle)
libsx 2.08-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, trixie
  • size: 2,668 kB
  • sloc: ansic: 8,739; sh: 8,603; makefile: 62
file content (9 lines) | stat: -rw-r--r-- 141 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
#include "libsx.h"

int main(int argc, char **argv)
{
   OpenDisplay(argc, argv);
   MakeLabel("Hello World");
   MainLoop();
   return 0;
}