-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from stanislaw/develop
docs: Tutorial: Hello World some content
- Loading branch information
Showing
2 changed files
with
27 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,30 @@ | ||
Tutorial: Hello World | ||
===================== | ||
|
||
... | ||
This tutorial assumes that you have installed ``filecheck`` and have it | ||
available in your PATH: | ||
|
||
.. code-block:: bash | ||
$ filecheck | ||
/usr/local/bin/filecheck | ||
<check-file> not specified | ||
The FileCheck program expects the following grammar: | ||
|
||
.. code-block:: text | ||
filecheck <check-file> [<options>] | ||
Create new file ``hello-world.check`` with the following contents: | ||
|
||
.. code-block:: text | ||
; CHECK: Hello world | ||
.. code-block:: bash | ||
echo "Hello world" | filecheck hello-world.check | ||
/usr/local/bin/FileCheck | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
; CHECK: Hello world | ||
|