Guest User

Untitled

a guest
Feb 25th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 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. //I love comments they are the best
  26.  
  27. /* Comments help newbies like
  28. me understand was the code does
  29. so i do not have to have a developer explain
  30. it to me and look like a dumbass*/
  31.  
  32. }
  33. }
Add Comment
Please, Sign In to add comment