commit
This commit is contained in:
10
scripts/apex/hello.apex
Normal file
10
scripts/apex/hello.apex
Normal file
@@ -0,0 +1,10 @@
|
||||
// Use .apex files to store anonymous Apex.
|
||||
// You can execute anonymous Apex in VS Code by selecting the
|
||||
// apex text and running the command:
|
||||
// SFDX: Execute Anonymous Apex with Currently Selected Text
|
||||
// You can also execute the entire file by running the command:
|
||||
// SFDX: Execute Anonymous Apex with Editor Contents
|
||||
|
||||
string tempvar = 'Enter_your_name_here';
|
||||
System.debug('Hello World!');
|
||||
System.debug('My name is ' + tempvar);
|
||||
6
scripts/soql/account.soql
Normal file
6
scripts/soql/account.soql
Normal file
@@ -0,0 +1,6 @@
|
||||
// Use .soql files to store SOQL queries.
|
||||
// You can execute queries in VS Code by selecting the
|
||||
// query text and running the command:
|
||||
// SFDX: Execute SOQL Query with Currently Selected Text
|
||||
|
||||
SELECT Id, Name FROM Account
|
||||
Reference in New Issue
Block a user