5 lines
107 B
OpenEdge ABL
Raw Normal View History

2018-09-10 15:30:03 +10:00
global with sharing class HelloWorld {
global static void main() {
System.debug('Hello World');
}
}