Advertisement
Guest User

Untitled

a guest
Nov 11th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. import State from "./state";
  2. import Player from "./player";
  3.  
  4. const p1: Player = new Player("computer_vm");
  5. const p2: Player = new Player("computer2_vm");
  6.  
  7. const game = new State(p1, p2);
  8. game.play(200);
  9. p1.savePolicy();
  10. p2.savePolicy();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement