Skip to content

Releases: ReeceGilbert/Nearoh-Coding-Language

Nearoh v0.2.0 - Dictionaries and Core Data Structure Expansion

04 May 00:18
Immutable release. Only release title and notes can be modified.
95c7b02

Choose a tag to compare

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
2

Nearoh v0.1.0 - Objects, Lists, and Iteration

22 Apr 23:50
Immutable release. Only release title and notes can be modified.
abc1f9e

Choose a tag to compare

First milestone release.

Implemented:

  • Classes
  • init
  • Object fields
  • Lists
  • for-in loops
  • Functions
  • Runtime execution