Skip to content
Snippets Groups Projects
Select Git revision
  • 2b9dda232b1833e21933138c540065cf3b5c7459
  • main default protected
  • increase_steps
  • auto_mutation
4 results

show_agent.py

Blame
  • demo-01.c 132 B
    #include <stdio.h>
    
    int main (void)
    {
      for (int i = 10; i > 0; i--)
        printf ("%d ... ", i);
      printf ("Bumm.\n");
      return 0;
    }