From 4c9aa78dc8666e13369e2c900eb6af86cab4893c Mon Sep 17 00:00:00 2001 From: Kyler Date: Fri, 5 Dec 2025 00:01:00 -0700 Subject: [PATCH] Listed special features in report --- REPORT.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/REPORT.md b/REPORT.md index 81c391e..096738f 100644 --- a/REPORT.md +++ b/REPORT.md @@ -57,6 +57,9 @@ basically non-existent. It is also memory safe with its barrow checker. With it being another systems programming language, and these modern features, I feel like it is just as good of a choice of a language for my project. +The special feature for the Rust port is being able to export and import the +interpreter state in the repl using `#save ` and `#load `. + **Python** was my final port. With it being the language I am most comfortable and experienced with, this was an easy port to make. While it is very easy, even for someone without my experience, and it has many of the same modern @@ -65,6 +68,8 @@ programming language, I would not be able to run this project on an embedded system very cleanly or easily, making Python not as good of a choice with my goal of portability to embedded systems. +The special feature for the Python port is the SLS Calculator App. + ## Lessons ## Struggles