summaryrefslogtreecommitdiff
path: root/echo.md
blob: 7614bdd9140bdf5910bab7fe3ab0d3e84ee3d41d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
```