Examples of Vlocity/SF LWC components (in various states of working)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
444 B

4 years ago
  1. // Use .apex files to store anonymous Apex.
  2. // You can execute anonymous Apex in VS Code by selecting the
  3. // apex text and running the command:
  4. // SFDX: Execute Anonymous Apex with Currently Selected Text
  5. // You can also execute the entire file by running the command:
  6. // SFDX: Execute Anonymous Apex with Editor Contents
  7. string tempvar = 'Enter_your_name_here';
  8. System.debug('Hello World!');
  9. System.debug('My name is ' + tempvar);