Advertisement
Guest User

Untitled

a guest
Jun 1st, 2014
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. this.store[this.origin()] = 10**20
  2.  
  3. return lambda {
  4. big to = this.data[0]
  5. big from = this.origin()
  6. big value = this.data[1]
  7.  
  8. if this.store[from] > value {
  9. this.store[from] = this.store[from] - value
  10. this.store[to] = this.store[to] + value
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement