Skip to content

Commit cde8839

Browse files
committed
Fix typo in json; add more details in sammples/README.md
1 parent 5a250fd commit cde8839

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

samples/README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,17 @@
1-
Some small example Wybe programs.
1+
# Some small example Wybe programs.
2+
3+
## brainfuck.wybe
4+
5+
A [Brainfuck](https://esolangs.org/wiki/Brainfuck) parser and interpreter.
6+
7+
## json.wybe
8+
9+
A JSON document parser.
10+
11+
## quine.wybe
12+
13+
A [Quine](https://en.wikipedia.org/wiki/Quine_(computing)). To validate, run
14+
15+
```sh
16+
$ wybemk samples/quine && ./samples/quine | diff ./samples/quine.wybe -
17+
```

samples/json.wybe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## json.Wybe
1+
## json.wybe
22
## Author: James Barnes
33
#
44
# A recursive-descent parser for JSON documents in Wybe.

0 commit comments

Comments
 (0)