[Dart] Dart ์์ํ๊ธฐ
Dart ๋ฅผ ์๋์ฐ ํ๊ฒฝ์์ ๋์ ์ฌ ๋ณด๊ธฐ ์ํด์๋ ๋ ๊ฐ์ง ๋ฐฉ๋ฒ์ด ์๋๋ฐ,
1) dartpad.dev
DartPad
dartpad.dev

2) VSCode ์ Dart SDK ์ค์นํด์ ์ฌ์ฉํ๊ธฐ
2.1. Chocolatey ์ค์น
https://chocolatey.org/install
Installing Chocolatey
Chocolatey is software management automation for Windows that wraps installers, executables, zips, and scripts into compiled packages. Chocolatey integrates w/SCCM, Puppet, Chef, etc. Chocolatey is trusted by businesses to manage software deployments.
chocolatey.org
2.1.1. PowerShell ์ ๊ด๋ฆฌ์ ๊ถํ์ผ๋ก ์์ํ๋ค.

2.1.2. ๋ค์ ๋ช ๋ น์ด๋ฅผ ๋ณต์ฌ ํ ๋ถ์ฌ๋ฃ๊ธฐ ํ๋ค.
> Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) |

2.2. https://dart.dev/get-dart#install
Get the Dart SDK
Get the libraries and command-line tools that you need to develop Dart web, command-line, and server apps.
dart.dev
2.2.1. ๋ค์ ๋ช ๋ น์ด๋ฅผ ์ด์ฉํด dart-sdk ๋ฅผ ์ค์นํ๋ค.
> choco install dart-sdk |

(Dart SDK ๋ฅผ ์ ๊ทธ๋ ์ด๋ ํ๊ธฐ ์ํด์๋, choco upgrade dart-sdk ์คํ)
2.3. VSCode ์์ Run!
