aboutsummaryrefslogtreecommitdiff
path: root/lib/shell/README.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-09-01 16:44:58 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-09-01 16:44:58 -0400
commited50c5fefb8892ad2ba5262491669f268ddbd436 (patch)
treee93a6a8b7e963c37a001691751d6845d10e0cbf8 /lib/shell/README.md
parent02a99d24a310c04622a875dcf4b0c6fd2de71332 (diff)
Overhaul code to stop keeping examples and libraries in the same repo,
but instead spin each out into its own repo.
Diffstat (limited to 'lib/shell/README.md')
-rw-r--r--lib/shell/README.md13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/shell/README.md b/lib/shell/README.md
deleted file mode 100644
index d4bcd42e..00000000
--- a/lib/shell/README.md
+++ /dev/null
@@ -1,13 +0,0 @@
-# Shell
-
-This module defines a `lang` for running shell scripts:
-
-```tomo
-use shell_v1.0
-
->> $Shell"
- seq 5
- echo DONE
-":get_output()
-= "1$\n2$\n3$\n4$\n5$\nDONE"
-```