Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. /*
  2. * 이번 시간에서는 TODO 또는 그 이상의 tag 에 대해서 알아보도록 한다.
  3. *
  4. * 아래 내용을 확인해보자.
  5. Programmers may use informal tags in comments to assist in indexing common issues.
  6. They may then be able to be searched for with common programming tools,
  7. such as the Unix grep utility or even syntax-highlighted within text editors.
  8. These are sometimes referred to as "codetags"[35][36] or "tokens".[37]
  9.  
  10. Such tags differ widely, but might include:
  11.  
  12. BUG – a known bug that should be corrected.
  13. FIXME – should be corrected.
  14. HACK – a workaround.
  15. TODO – something to be done.
  16. UNDONE – a reversal or "roll back" of previous code.
  17. XXX – warn other programmers of problematic or misguiding code
  18. UX – user experience, notice about non-trivial code.
  19. *
  20. * 위의 내용을 보면, 자신만의 양식으로 작성하고 grep 명령어를 써서 관리하는것을 알수 있다.
  21. * example : grep FIXME * -R 이런 식으로 찾을 수 있다.
  22. */
  23.  
  24.  
  25.  
  26. int main(int argc, char** argv) {
  27.  
  28. //TODO: This is a test of TODO list. Do Something here.
  29. return 0;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement