From fc1f8b0130481e5ff29b6560f1c8a9c1e3123321 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?ChangJoo=20Park=28=EB=B0=95=EC=B0=BD=EC=A3=BC=29?= Date: Thu, 15 May 2025 10:23:51 +0900 Subject: [PATCH] fix: use Aside --- src/content/docs/part2/{collections.md => collections.mdx} | 1 + 1 file changed, 1 insertion(+) rename src/content/docs/part2/{collections.md => collections.mdx} (99%) diff --git a/src/content/docs/part2/collections.md b/src/content/docs/part2/collections.mdx similarity index 99% rename from src/content/docs/part2/collections.md rename to src/content/docs/part2/collections.mdx index 22bfb9b..0842d0f 100644 --- a/src/content/docs/part2/collections.md +++ b/src/content/docs/part2/collections.mdx @@ -1,6 +1,7 @@ --- title: 컬렉션과 반복문 --- +import { Aside } from '@astrojs/starlight/components'; Dart는 데이터를 저장하고 조작하기 위한 다양한 컬렉션 타입과 반복문을 제공합니다. 이 장에서는 Dart의 컬렉션 타입(List, Set, Map)과 이를 처리하기 위한 다양한 반복문 및 반복 연산을 알아보겠습니다.