Example #1
0
 /**
  * Constructs a copy of an existing Program.
  *
  * @param inOther The Push program to copy.
  */
 public Program(Program inOther) {
   inOther.CopyTo(this);
   _interpreter = inOther._interpreter;
 }