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

9 lines
120 B
JavaScript
Raw Normal View History

2009-12-21 16:41:45 +00:00
(function(){
while (demand > supply) {
sell();
restock();
}
while (supply > demand) {
buy();
}
})();