rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/apex
2019-10-21 10:18:17 +02:00

10 lines
216 B
Plaintext

public class with sharing Trigger {
@Deprecated
public void resolveSum(int x, int y) {
System.debug('x is ' + x);
System.debug('y is ' + y);
System.debug('x + y = ' + (x+y));
}
}