Merge pull request #500 from Gurenax/master

Hello World from Apex (Salesforce)
This commit is contained in:
Mike Donaghy
2019-07-23 07:28:14 -05:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

5
a/Apex.cls Normal file
View File

@@ -0,0 +1,5 @@
global with sharing class HelloWorld {
global static void main() {
System.debug('Hello World');
}
}