123456789101112131415161718192021222324252627282930 |
- # include "lib.h"
- /* INCLUDE
- * Word and tools */
- /* */
- # include <stdio.h>
- /* INCLUDE
- * printf */
- /* */
- int
- main (void)
- {
- Word _word;
- Word word (_word);
-
- word.print ();
- /* try do error */
- // word__delete (_word);
- }
- /* include the implementation of all functions */
- # include "lib.c"
- /* INCLUDE
- * Word and tools
- * Words and tools */
|