Guest User

Untitled

a guest
Jul 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. // Batter Record
  2. type Batter = { Last : string; First : string; Season : int; AB : float; OBP : float }
  3. let all_obps = new List<Batter>(5)
  4. all_obps.AddRange([| { Last = ""; First = ""; Season = 0; AB = 0.0; OBP = 0.0 };
  5. { Last = ""; First = ""; Season = 0; AB = 0.0; OBP = 0.0 };
  6. { Last = ""; First = ""; Season = 0; AB = 0.0; OBP = 0.0 };
  7. { Last = ""; First = ""; Season = 0; AB = 0.0; OBP = 0.0 };
  8. { Last = ""; First = ""; Season = 0; AB = 0.0; OBP = 0.0 } |])
Add Comment
Please, Sign In to add comment