5 lines
107 B
OpenEdge ABL
5 lines
107 B
OpenEdge ABL
|
|
global with sharing class HelloWorld {
|
||
|
|
global static void main() {
|
||
|
|
System.debug('Hello World');
|
||
|
|
}
|
||
|
|
}
|