Implement assign and set commands, improve output format

This commit is contained in:
2026-03-02 23:03:36 -06:00
parent 67901fa91f
commit f778507f39
7 changed files with 127 additions and 8 deletions

View File

@@ -43,9 +43,12 @@ import {Each} from "./each.js";
import {Words} from "./words.js";
import {Drop} from "./drop.js";
import {Sort} from "./sort.js";
import {Set} from "./set.js";
import {Assign} from "./assign.js";
export type Commands = Command<CommandData>[]
export const commands: Commands = [
new Assign,
new Clear,
new Contains,
new Copy,
@@ -78,6 +81,7 @@ export const commands: Commands = [
new RSub,
new RunFile,
new Save,
new Set,
new Show,
new Sort,
new Split,