Skip to content
Snippets Groups Projects
Select Git revision
  • c255da4dd56398b3a641abfdf659d7da19bd5373
  • 2024ws default
  • 2023ws
  • 2022ws
  • 2021ws
  • 2020ws
  • 2018ws
  • 2019ws
  • 2017ws
  • 2016ws
10 results

blink-0a.c

Blame
  • hello-4.c 133 B
    int pruzzel (const char *bla)
    {
      printf ("%s", bla);
      return 42;
    }
    
    int main (void)
    {
      pruzzel ("Hello, world!\n");
      return 0;
    }