Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. List<Account> accounts = new List<Account>();
  2. for(Integer i = 0; i < 200; i++){
  3. Account a = new Account(Name='Account '+i);
  4. accounts.add(a);
  5. }
  6. insert accounts;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement