summaryrefslogtreecommitdiff
path: root/echo.md
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-10-04 21:22:40 +0300
committerLars Wirzenius <liw@liw.fi>2019-10-04 21:22:40 +0300
commitdc2534a5ed2e7b84920338637be513b300e8780f (patch)
treee92d8c599389142a73cd03e23628e44b90247e8b /echo.md
parent5ec88c876fba97acbe4d3ec16a7e97554cfed803 (diff)
downloadsubplot-rust-talk-dc2534a5ed2e7b84920338637be513b300e8780f.tar.gz
Change: update talk, about ready now
Diffstat (limited to 'echo.md')
-rw-r--r--echo.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/echo.md b/echo.md
new file mode 100644
index 0000000..7614bdd
--- /dev/null
+++ b/echo.md
@@ -0,0 +1,17 @@
+---
+title: "**echo**(1) acceptance tests"
+...
+# Introduction
+**echo**(1) is a Unix command line tool, which writes
+its command line arguments to the standard output.
+This is a simple acceptance test suite for the
+`/bin/echo` implementation.
+
+# No arguments
+Run `/bin/echo` without arguments.
+```fable
+when user runs echo without arguments
+then exit code is 0
+and standard output contains a newline
+and standard error is empty
+```