Skip to content
Snippets Groups Projects
Select Git revision
  • d49e60605ea31217e2e554ff5270df98f070e89d
  • master default protected
2 results

w2v_cnn_gen_hdf5.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;
    }