rf-web/vendor/bundle/gems/rouge-3.12.0/lib/rouge/demos/apex

10 lines
216 B
Plaintext
Raw Normal View History

2019-10-21 08:18:17 +00:00
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));
}
}