From 2b42a0c1b9b3e40e20c430efebfc700754f870c7 Mon Sep 17 00:00:00 2001 From: Glenn Dimaliwat Date: Mon, 10 Sep 2018 15:30:03 +1000 Subject: [PATCH] Add Apex Hello World class --- a/Apex.cls | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 a/Apex.cls diff --git a/a/Apex.cls b/a/Apex.cls new file mode 100644 index 0000000..5ed2c35 --- /dev/null +++ b/a/Apex.cls @@ -0,0 +1,5 @@ +global with sharing class HelloWorld { + global static void main() { + System.debug('Hello World'); + } +} \ No newline at end of file