
Code:
When I click save, I got this error: expecting a semi-colon, found 'exampleVaribleName'There is a ; on the first statement, why this error?Thank you very much.trigger TestTrigger on CustomObjectBlah__c (before insert) {
Set exampleVaribleName = new Set();
}
2 respuestas

Thank you James, very quick and accurate anwser.I should read the "Force.com Apex Code Developer's Guide" first. Cheers.