📝 Adds README and LICENSE

This commit is contained in:
Daniel Svitan
2025-05-05 21:46:59 +02:00
parent 0d144f025d
commit 53c4896829
2 changed files with 697 additions and 0 deletions

22
README.md Normal file
View File

@@ -0,0 +1,22 @@
# pwetty
This is just a very, very simple json prettifier, initially written in C and gradually translated into GNU Assembly, because why not.
### Building
```sh
./build.sh
```
This will produce two binary files, `a.out` (C output) and `b.out` (Assembly output)
### Running
```sh
cat file.json | a.out
cat file.json | b.out
```
### License
This project is licensed under the [GNU GPLv3 license](LICENSE)