Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save katelessardrad/2ab6582c1f6346e1afbf42ad1e7ca718 to your computer and use it in GitHub Desktop.
Save katelessardrad/2ab6582c1f6346e1afbf42ad1e7ca718 to your computer and use it in GitHub Desktop.
Week 1 HW: Welcome Class
public with sharing class Welcome {
//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
//me so that future developers, like yourself, would have a quick little introduction to what this class does.
//The two little slashes tell the compiler* that everything following on this line is a note
//for humans and not code that needs to be executed
// (* A compiler is the computer program that translates this code into executable computer instructions)
//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
/*There. That's better. the '/*' tells the compiler that there are multiple lines of comments coming. It knows everything on this line
and any following lines
and lines
and lines
and lines will continue to be comments
until it sees a */
//Ok, let's get started!
// Test Comment Added
public static void youDoThisPart() {
/*Your assignment is to write two comments below this one. They can say whatever you like.
Make one as a single line comment using the // notation. Make the other one a multi line comment using the /* notation.
When you're done, save this file so that it is compiled and stored in Salesforce. */
//I'm sure excited to get started with the Dev Consule!
/* We are going to have home every week.
* Maybe for hours.
* And hours?
* But it will be SO worth it when we know apex */
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment