comments.c 935 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. **
  3. ** Copyright @ 2020 Joshua Branson <jbranso@dismail.de>
  4. **
  5. ** This is dummy c program. It's main purpose is to enable me to
  6. ** remove comments.
  7. **
  8. ** This program is free software; you can redistribute it and/or
  9. ** modify it under the terms of the GNU General Public License as
  10. ** published by the Free Software Foundation; either version 3 of the
  11. ** License, or (at your option) any later version.
  12. **
  13. ** It is distributed in the hope that it will be useful, but
  14. ** WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ** GNU General Public License for more details.
  17. **
  18. ** You should have received a copy of the GNU General Public License
  19. ** along with this program. If not, see <http://www.gnu.org/licenses/>.
  20. */
  21. char c = 'a';
  22. // comment
  23. //another comment
  24. /**** // comment */ int i = 5;
  25. //great comment
  26. for (i = 6; i < 10; i++) //more comments
  27. ;