Discovered The Logic for the Fishing Industry
Discovered The Logic for the Fishing Industry
1
crossposts
You're viewing a single thread.
View all comments
1
comments
use homomorphism and apply it to everything:
interface Profitable { exploitable() --> bool can_organize() --> bool } let profitables: list[Profitable] for entity in all_things_on_earth { if entity.exploitable && !entity.can_organize { profitables.push(entity) } } profit += sell(exploit(profitables)) capital += buy_all_you_can(profit) - (buy_politicians(profit))
1 0 Reply