diff options
author | Runxi Yu <me@runxiyu.org> | 2024-12-05 20:08:56 +0800 |
---|---|---|
committer | Runxi Yu <me@runxiyu.org> | 2024-12-05 20:08:56 +0800 |
commit | 7057af668bb478233ffb2f517fb5f5c87cc75dcb (patch) | |
tree | ab163bdbbc77ee8d3a08a73e240c285543dd2dee | |
parent | Overflow update (diff) | |
download | e2-spec-7057af668bb478233ffb2f517fb5f5c87cc75dcb.tar.gz e2-spec-7057af668bb478233ffb2f517fb5f5c87cc75dcb.tar.zst e2-spec-7057af668bb478233ffb2f517fb5f5c87cc75dcb.zip |
e^2
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | README.md | 6 |
2 files changed, 5 insertions, 3 deletions
@@ -1,7 +1,7 @@ .PHONY: upload README.html: README.md - pandoc -so README.html -c style.css README.md + pandoc --mathml -so README.html -c style.css README.md upload: README.html style.css rsync --mkpath README.html style.css runxiyu.org:/var/www/docs/e2/ @@ -1,8 +1,10 @@ --- -title: e2 language testing space +title: $e^2$ language testing space author: Test_User and Runxi Yu --- +Note: The name "$e^2$" (or `e2` in ASCII) is subject to change. + Many languages attempt to be "memory safe" by processes such as reference counting, borrow checking, and mark-and-sweep garbage collection. These, for the most part, are guided towards preventing programmer error that causes @@ -14,7 +16,7 @@ memory safe languages) do not handle stack overflows correctly; although dynamic allocation failures could be easily handled, correctly-written programs could crash when running out of stack space, with no method to detect this condition and fail gracefully. - +) Conventional memory safety features are not our priority, but we may choose to include them in the future, likely with reference counting while allowing weak pointers to be labelled. |