Guest User

Untitled

a guest
Feb 22nd, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.17 KB | None | 0 0
  1. public with sharing class Welcome {
  2. //Welcome! I'm a comment and I'm here to tell you what this particular class file is for. The developer who created this class added
  3. //me so that future developers, like yourself, would have a quick little introduction to what this class does.
  4.  
  5. //The two little slashes tell the compiler* that everything following on this line is a note
  6. //for humans and not code that needs to be executed
  7. // (* A compiler is the computer program that translates this code into executable computer instructions)
  8.  
  9. //But you know what? This set of comments is already several lines long and getting longer. I'm tired of typing two slashes every time
  10.  
  11. /*There. That's better. the '/*' tells the compiler that there are multiple lines of comments coming. It knows everything on this line
  12. and any following lines
  13. and lines
  14. and lines
  15. and lines will continue to be comments
  16. until it sees a */
  17.  
  18. //Ok, let's get started!
  19.  
  20. public static void youDoThisPart() {
  21. //Bryony Mackey 2/9/2018 -- This is a single-line comment
  22. /*Bryony Mackey 2/9/2018 -- This is a multiple-line comment.
  23. Everything within the 'slash-star' is a comment, no matter how many lines.*/
  24.  
  25.  
  26. }
  27. }
Add Comment
Please, Sign In to add comment