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

mlp_visualizer.py

Blame
  • objects-37.cpp 250 B
    #include <stdio.h>
    
    class TFoo
    {
    private:
      int content;
    
    public:
    
      TFoo (int i)
      {
        content = i;
      }
    
      static void hello ()
      {
        printf ("The answer is: %d\n", content);
      }
    
    };
    
    int main ()
    {
      TFoo bla (42);
      bla.hello ();
      return 0;
    }