Skip to content
Snippets Groups Projects
Select Git revision
  • aeadb66c6d0dad0f3bff78acbb0c79ea05d061d4
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

hello-4.c

Blame
  • Forked from Peter Gerwinski / hp
    281 commits behind the upstream repository.
    hello-4.c 133 B
    int pruzzel (const char *bla)
    {
      printf ("%s", bla);
      return 42;
    }
    
    int main (void)
    {
      pruzzel ("Hello, world!\n");
      return 0;
    }