all repos — min @ 78fbf272c92b33cf99855165a4f97ab0b0f55425

A small but practical concatenative programming language.

Removed io.read and io.write.
h3rald h3rald@h3rald.com
Sun, 27 Oct 2024 11:39:08 +0100
commit

78fbf272c92b33cf99855165a4f97ab0b0f55425

parent

d8a8f9b39931b986ce647553dd58c86677820e58

3 files changed, 1 insertions(+), 10 deletions(-)

jump to
M minpkg/lib/min_io.nimminpkg/lib/min_io.nim

@@ -153,10 +153,4 @@ return choice

let choice = choose() i.dequote(q.qVal[choice-1].qVal[1]) - def.symbol("write") do (i: In): - i.pushSym("fwrite") - - def.symbol("read") do (i: In): - i.pushSym("fread") - def.finalize("io")
M next-release.mdnext-release.md

@@ -3,6 +3,7 @@

* Actually removed the `invoke` symbol and `*` sigil that were supposed to be removed in v0.44.0 but didn't. * Removed Dockerfile and Notepad++ highlighter (no longer maintained). * When defining or deleting a sigil, a symbol with the same name is now defined/deleted as well. +* Removed obsolete aliases `io.read` and `io.write`. ### Fixes and Improvements
M site/contents/reference-io.mdsite/contents/reference-io.md

@@ -70,8 +70,6 @@

{#op||putchr||{{s}}||{{any}}|| Prints {{s}} to STDOUT without printing a new line ({{s}} must contain only one character).#} -{#alias||read||fread#} - {#op||unmapkey||{{sl}}||{{none}}|| > Unmaps a previously-mapped key or key-combination {{sl}}, restoring the default mapping if available. >

@@ -84,5 +82,3 @@ #}

{#op||warn||{{any}}||{{any}}|| Prints {{any}} and a new line to STDERR, if logging level is set to [warn](class:kwd) or lower.#} - -{#alias||write||fwrite#}