Releases: ReeceGilbert/Nearoh-Coding-Language
Releases · ReeceGilbert/Nearoh-Coding-Language
Nearoh v0.2.0 - Dictionaries and Core Data Structure Expansion
Immutable
release. Only release title and notes can be modified.
Nearoh now supports dictionaries / maps as a first-class runtime data structure.
This release adds dictionary literals, dictionary indexing, dictionary index assignment, and len() support for dictionaries.
Example:
person = {
"name": "Reece",
"age": 21
}
print(person["name"])
print(person["age"])
person["age"] = 22
print(person["age"])
print(len(person))
Expected output:
Reece
21
22
2Nearoh v0.1.0 - Objects, Lists, and Iteration
Immutable
release. Only release title and notes can be modified.
First milestone release.
Implemented:
- Classes
- init
- Object fields
- Lists
- for-in loops
- Functions
- Runtime execution