Meeting 42: The Most Important Decision Ever Made

Today, we're going to make the most crucial decision of the century. The fate of humanity will not be decided, but at least our snack budget will be.

Read the Decision See the Alternatives Consult the Experts
			// The Decision Algorithm
			// 
			// Parameters:
			// 	- budget: float
			// 	- snacks: int
			// 
			// Returns:
			// 	- boolean: true if we should buy snacks, false otherwise
			//
			function decide(budget, snacks) {
				if (snacks > 10) {
					return true;
				} else {
					return false;
				}
			}
		

Don't forget to bring your own snacks!

Snack Policy