thp-web/md/learn/collections/maps.md

44 lines
441 B
Markdown
Raw Normal View History

2023-10-02 01:41:38 +00:00
# Maps
Also known as Associative Arrays
## Usage without a declaration
```thp
let mut person = Obj {
2023-10-02 01:41:38 +00:00
name: "John",
surname: "Doe",
age: 33,
}
print("Hello {person.name}")
person.age += 1
print("You just turned {person.age}")
```
## Usage with a declaration
```thp
obj Person = {
String name,
String surname,
Int age,
}
let john_doe = Person {
2023-10-02 01:41:38 +00:00
name: "John",
surname: "Doe",
age: 33,
}
```