// main.cc  Demo of static class members
// P. Conrad for CISC220, 06J

#include "foo.h"

int main(void)
{
  Foo_C a;
  Foo_C b(3,4);
  Foo_C c(-1,3);

  // now I have three instances of the class Foo_C.
 
  // ...



  return 0;
}
