Guest User

Untitled

a guest
Aug 15th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. #!/usr/local/bin/io
  2. Lobby stockpile := Number clone
  3. Lobby stockpile = -50
  4.  
  5. Producer := Object clone
  6. Consumer := Object clone
  7.  
  8. Producer crankEmOut := method (amount, delay, trigger,
  9. loop (while (Lobby stockpile < trigger, Lobby stockpile = Lobby stockpile + amount println; Lobby stockpile println, wait(delay))))
  10.  
  11.  
  12. Consumer buyEmUp := method (
Add Comment
Please, Sign In to add comment