Removed < and > sigils.
h3rald h3rald@h3rald.com
Mon, 10 Jun 2024 17:47:21 +0200
4 files changed,
9 insertions(+),
17 deletions(-)
M
minpkg/lib/min_global.nim
→
minpkg/lib/min_global.nim
@@ -1192,12 +1192,6 @@
def.sigil("*") do (i: In): i.pushSym("invoke") - def.sigil(">") do (i: In): - i.pushSym("save-symbol") - - def.sigil("<") do (i: In): - i.pushSym("load-symbol") - def.sigil("^") do (i: In): i.pushSym("lambda")
M
next-release.md
→
next-release.md
@@ -3,12 +3,14 @@
- User-defined symbols can no longer contain dots (`.`). - The symbol `invoke` and the `*` sigil have been removed in favor of symbol dot notation. - The `.` and `..` symbols have been renamed to `pwd` and `parent-dir` respectively. -- The `!` symbol has been removed. Use `system` instead. -- The `!` sigil has been removed. Use `system` instead. -- The `&` symbol has been removed. Use `run` instead. -- The `&` sigil has been removed. Use `run` instead. -- The `/` sigil has been removed. Use `dget` or symbol dot notation instead. -- The `%` sigil has been removed. Use `dset` or symbol dot notation instead. +- The `!` symbol has been removed; use `system` instead. +- The `!` sigil has been removed; use `system` instead. +- The `&` symbol has been removed; use `run` instead. +- The `&` sigil has been removed; use `run` instead. +- The `/` sigil has been removed; use `dget` or symbol dot notation instead. +- The `%` sigil has been removed; use `dset` or symbol dot notation instead. +- The `>` sigil has been removed; use `save-symbol` innstead. +- The `<` sigil has been removed; use `load-symbol` innstead. ### New Features
M
site/contents/reference-global.md
→
site/contents/reference-global.md
@@ -26,10 +26,6 @@ {#sig||@||bind#}
{#alias||@||bind#} -{#sig||>||save-symbol#} - -{#sig||<||load-symbol#} - {#alias||->||dequote#} {#alias||>>||prefix-dequote#}
M
tests/http.min
→
tests/http.min
@@ -52,7 +52,7 @@ {} (
("$1/delete" (url) => % "url" dset) ("DELETE" "method" dset) (request) - ) tap "body" dget from-json "url" dget "https?:\/\/$1\/delete" (host) => % match? + ) tap "body" dget from-json "url" dget "https?:\\/\\/$1/delete" (host) => % match? ) test.assert test.report