File: hello.c

package info (click to toggle)
build-essential 6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 116 kB
  • ctags: 73
  • sloc: haskell: 89; makefile: 82; sh: 24; ansic: 6; cpp: 6
file content (7 lines) | stat: -rw-r--r-- 87 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
#include <stdio.h>

int main(void)
{
        puts("Hello World!");
        return 0;
}