test.cs 582 B

1234567891011121314151617181920212223242526272829303132333435
  1. class MainClass
  2. {
  3. //TODO marker is here
  4. //ToDo
  5. //FIXME is here
  6. //FixMe is here
  7. /*TBD is here*/
  8. //HACK is here
  9. //XXX is here
  10. int main()
  11. {
  12. //TODO marker is here
  13. //ToDo
  14. //FIXME is here
  15. //FixMe is here
  16. /*TBD is here*/
  17. //HACK is here
  18. //XXX is here
  19. //All here: TODO,ToDo,FIXME,FixMe,TBD,HACK,XXX
  20. // no hereTODOss
  21. // no hereTODO
  22. // no TODOss
  23. //TOBEDONE
  24. char a[] = "TODO string TOBEDONE";
  25. }
  26. //All here: TODO,ToDo,FIXME,FixMe,TBD,HACK,XXX
  27. // no hereTODOss
  28. // no hereTODO
  29. // no TODOss
  30. //TOBEDONE
  31. }