words__test.cpp 310 B

12345678910111213141516171819202122232425
  1. /* */
  2. # include "lib.h"
  3. /* INCLUDE
  4. * Word
  5. * Words */
  6. /* */
  7. int
  8. main (void)
  9. {
  10. Words _words;
  11. // _words.line = "_";
  12. Words words (_words);
  13. _words.print ();
  14. words.print ();
  15. }
  16. /* include the implementation of all functions */
  17. # include "lib.c"
  18. /* INCLUDE
  19. * Word and tools
  20. * Words and tools */