An Algorithm for Entrepreneurship?
function execute(idea) {
plan = writeAPlan(idea);
product = buildProduct(plan);
while(!satisfies(idea, product)) {
plan = tweakPlan(plan, idea);
product = buildProduct(plan);
}
return product;
}
I stumbled upon this fun thingy on Sol Eun’s About page. It made me think, what if there were such as thing as pseudocode for launching a product. What would it look like?