Skip to content

Commit e670242

Browse files
committed
readme: Add Go instructions
1 parent c19e27d commit e670242

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

README.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,27 @@ Various tests for IRC parsers so people can check to ensure they're consistent.
99

1010
There are two included tests used to test these vectors, the Python and Golang programs.
1111

12+
1213
### Python
1314

1415
The `test.py` script uses the [girc](https://github.com/DanielOaks/girc) and [ircmatch](https://github.com/mammon-ircd/ircmatch>) libraries as reference implementations.
1516

16-
To install these libraries, run `pip3 install --upgrade girc ircmatch`.
17+
To install these libraries, run:
18+
19+
pip3 install --upgrade girc ircmatch
20+
21+
After that, simply run the script with `python3 test.py` in the root dir. This will test everything we can test, and show the output.
22+
23+
24+
### Go
25+
26+
The `test.go` script uses the [girc-go](https://github.com/DanielOaks/girc-go) packages as reference implementations.
27+
28+
To install these packages, run:
29+
30+
go get -u ./...
1731

18-
After that, simply run `python3 test.py`. This will test everything we can test, and show the output.
32+
After that, simply run the script with `go run test.go run` in the root dir. This will test everything we can test, and show the output.
1933

2034

2135
## Sources

0 commit comments

Comments
 (0)