Notes
Comments in programming are annotations within the code that are not executed but provide information for developers or readers.
In Salesforce Apex, comments can be single-line (//
) or multi-line (/* */
) and are used to document code, explain functionality, or temporarily disable code segments.
Integer x = 12;
Integer y = 18;
Integer sum = x + y;
//'System.debug' statement is used to print the result of the addition to the debug log.
System.debug(sum);
Video
Video does not exists.