9 lines
253 B
OpenEdge ABL
9 lines
253 B
OpenEdge ABL
public with sharing class Sample1 {
|
|
public Sample1() {
|
|
System.debug('Hello World');
|
|
System.debug('shreys');
|
|
System.debug('new changes');
|
|
System.debug('Testing 123');
|
|
System.debug('Tested 123');
|
|
}
|
|
} |