From 8b2dd564d77e54124faa71397b20748002340ccf Mon Sep 17 00:00:00 2001 From: Dylan Kritter Date: Mon, 27 Oct 2025 21:47:53 -0400 Subject: [PATCH 1/2] modify readme to check clippy test --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index b7c3b96b..32f4ed27 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,8 @@ Welcome to Aria. Aria is a modern, dynamic scripting language. It is meant to be a "sweet spot" language, easy to pick-up and with a good balance between ease of use, safety, and flexibility. Aria's design choices help you build great programs quickly. +slash-clippy test + Aria has modern, safer error handling: Aria replaces unreliable `None` pointer checks with a modern, multi-tiered approach to error handling. By emphasizing algebraic data types (e.g. `Maybe`), Aria makes errors explicit, safer, and easier to manage, with fewer runtime surprises. `null`, the [billion dollar mistake](https://softwareengineering.stackexchange.com/questions/413149/if-null-is-a-billion-dollar-mistake-what-is-the-solution-to-represent-a-non-ini) just does not exist in Aria, making code safer, easier to maintain and error handling more robust. From 4b7f81092b38ff2b51c6ab390b1f008d68d0f387 Mon Sep 17 00:00:00 2001 From: Dylan Kritter <100829534+dlkritter@users.noreply.github.com> Date: Tue, 28 Oct 2025 11:21:33 -0400 Subject: [PATCH 2/2] Update README with new slash-clippy test message test reaction --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 32f4ed27..3593ee22 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ Welcome to Aria. Aria is a modern, dynamic scripting language. It is meant to be a "sweet spot" language, easy to pick-up and with a good balance between ease of use, safety, and flexibility. Aria's design choices help you build great programs quickly. -slash-clippy test +slash-clippy test - again for PR Aria has modern, safer error handling: Aria replaces unreliable `None` pointer checks with a modern, multi-tiered approach to error handling. By emphasizing algebraic data types (e.g. `Maybe`), Aria makes errors explicit, safer, and easier to manage, with fewer runtime surprises.