:::warning
**CHANGE LOG**(有任何修改請在此通知)
> [name=andrew] 2023-12-19, 8:42pm 已上傳至 [gitlab](https://gitlab.com/aesthetic-programming/book/-/blob/master/source.zh_TW/acknowledgments.md?ref_type=heads)。
:::
:::info
感謝大家對於《美學程式設計》台灣版分岔計畫的支持!
歡迎新增致謝名單!
:::
```javascript
//開啟瀏覽器主控台
let thankYou = [
"大家彼此 Each other \
- 一路以來共同協作 for an excellent collaboration",
"臺北數位藝術中心(Digital Art Center, Taipei) \
- 對於本計畫在2023年的翻譯與實體工作坊支持" ,
"Delfina Foundation \
- 對於本計畫在2023年倫敦工作坊的支持" ,
- "support from CSNI at LSBU, CCI at UAL\"
];
function draw() {
frameRate(1);
print(random(thankYou));
}
```