Guest User

Untitled

a guest
Feb 23rd, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 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. /*Your assignment is to write two comments below this one. They can say whatever you like.
  22. Make one as a single line comment using the // notation. Make the other one a multi line comment using the /* notation.
  23. When you're done, save this file so that it is compiled and stored in Salesforce. */
  24.  
  25. //Single line comments have TWO slashes, and a multi-line comment uses a slash and an asterisk
  26. /*Usually I want to know more information, and I bet that multi-line comments would be more helpful
  27. * So it might be more typical for me to use multi-line comments
  28. * Especially since comments are helpful in jogging my own memory!
  29. */
  30.  
  31.  
  32.  
  33. }
  34. }
Add Comment
Please, Sign In to add comment