Skip to content

Commit 6ae01e4

Browse files
committed
Update Dart.md
Fixed Numbered List Section separation
1 parent 3689673 commit 6ae01e4

1 file changed

Lines changed: 13 additions & 10 deletions

File tree

docs/Language/Dart/Dart.md

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,30 @@ has_children: false
1313

1414
Dart is a client-optimized programming language for apps on multiple platforms. It is developed by Google and is used to build mobile, desktop, server, and web applications. Dart is an object-oriented, class-based, garbage-collected language with C-style syntax. It supports interfaces, mixins, abstract classes, generics, and optional typing.
1515

16-
### 1) Object-Oriented
16+
---
17+
18+
1. Object-Oriented
1719

18-
- Dart is an object-oriented language, which means that everything in Dart is an object.
19-
- Objects are instances of classes, which are blueprints for creating objects.
20+
- Dart is an object-oriented language, which means that everything in Dart is an object.
21+
- Objects are instances of classes, which are blueprints for creating objects.
2022

21-
### 2) Class-Based
23+
2. Class-Based
2224

23-
- Dart is a class-based language, which means that all objects are created from classes.
24-
- Classes are used to define the structure and behavior of objects.
25+
- Dart is a class-based language, which means that all objects are created from classes.
26+
- Classes are used to define the structure and behavior of objects.
2527

26-
### 3) Garbage-Collected
28+
3. Garbage-Collected
2729

28-
- Dart is a garbage-collected language, which means that the Dart VM automatically reclaims memory occupied by objects that are no longer in use.
29-
- This allows developers to focus on writing code instead of worrying about memory management.
30+
- Dart is a garbage-collected language, which means that the Dart VM automatically reclaims memory occupied by objects that are no longer in use.
31+
- This allows developers to focus on writing code instead of worrying about memory management.
3032

3133
---
3234

3335
## Examples
3436

35-
Here are some simple example problems that explore making a coffee. Here is some example dart code:
37+
Here are some simple example problems that explore making a coffee.
3638

39+
{: .code title="Example"}
3740
```dart
3841
class CoffeeMaker {
3942
void makeCoffee() {

0 commit comments

Comments
 (0)