Add README with usage instructions

This commit is contained in:
Ethan Girouard 2024-12-09 21:58:47 -05:00
parent f990373f22
commit 24cc7d08d9
Signed by: eta357
GPG Key ID: 7BCDC36DFD11C146

10
README.md Normal file
View File

@ -0,0 +1,10 @@
# Windows12
A C-like compiled programming language implemented in Haskell.
## Usage
```shell
cabal run windows12 <input file> out.ll
llc out.ll -o out.s
gcc out.s -o out
./out
```