function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
anusha p 6anusha p 6 

invali integer ?

list<contact> conlist=new list<contact>();
for(integer j=0;j<10;j++);
{
    contact con=new contact();
    con.lastname='contact'+j;
    con.title='anu info';
    conlist.add(con);
}
insert conlist;




invalid integer j . 

can any one plz give me the reply..
thank you.
Manga LakshmiManga Lakshmi
Please remove ; after the for statement.