jashkenas--coffeescript/documentation/js/while.js

9 lines
120 B
JavaScript

(function(){
while (demand > supply) {
sell();
restock();
}
while (supply > demand) {
buy();
}
})();