Add if command

This commit is contained in:
2026-04-20 22:14:55 -05:00
parent c7c605665c
commit 82510fea2f
3 changed files with 66 additions and 0 deletions

View File

@@ -54,6 +54,7 @@ import {Script} from "./script.js";
import {Take} from "./take.js";
import {Group} from "./group.js";
import {Flatten} from "./flatten.js";
import {If} from "./if.js";
export type Commands = Command<CommandData>[]
export const commands: Commands = [
@@ -74,6 +75,7 @@ export const commands: Commands = [
new Group,
new Help,
new History,
new If,
new Indent,
new InFile,
new Join,