Last active
August 29, 2015 14:08
-
-
Save tpai/f77df917c5762f255eaf to your computer and use it in GitHub Desktop.
14行js code告訴你創業家的行為模式 XD
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
創業 = function(創始人, 點子, 資金) { | |
while (資金 > 0) { | |
創始人[開發人猿].寫程式(咖啡, 泡麵); | |
創始人[市場開發].到處找(有錢的親戚朋友); | |
創始人[產品企劃].檢驗點子(潮鞋, 便利貼); | |
if(被Google併購) { | |
return 資金 * 1000; | |
} else { | |
資金--; | |
點子.轉向(); | |
} | |
} | |
創始人.放棄().考研究所(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment