# Dart Basics

---

This is the **entry point** of a Dart app.

```dart
void main() {
  // your code starts here
}
```

- `main()` is the first function that runs.
- `void` means it returns nothing.

[[print statement]]

هنتعلم شوية عن ال [[Variables]]