trigger ContactTrigger on Contact (before insert) { //Context and Event
if(Trigger.isInsert && Trigger.isBefore) { // Condition
System.debug(Trigger.new); // Action
}
}
trigger ContactTrigger on Contact (before insert) { //Context and Event
if(Trigger.isInsert && Trigger.isBefore) { // Condition
System.debug(Trigger.new); // Action
}
}