Initial commit: caddy static file server workspace

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-23 19:33:50 +08:00
commit a98b21114c
1438 changed files with 15044 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// 匯入指定函式與常數
import { add, PI } from './math.js';
// 匯入預設匯出
import multiply from './math.js';
console.log(add(2, 3)); // 5
console.log(PI); // 3.14159
console.log(multiply(4, 5));// 20