Add Apex Hello World class

This commit is contained in:
Glenn Dimaliwat 2018-09-10 15:30:03 +10:00
parent 220bf4da45
commit 2b42a0c1b9

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');
}
}