docs: Update README.md (-o . is not needed; it's the default behavior)

This commit is contained in:
5684185+vsariola@users.noreply.github.com
2025-08-13 15:18:39 +03:00
parent f13a5cd2df
commit 74fea4138f

View File

@ -181,14 +181,14 @@ The compiler can then be used to compile a .yml song into .asm and .h files. For
example:
```
sointu-compile -o . -arch=386 tests/test_chords.yml
sointu-compile -arch=386 tests/test_chords.yml
nasm -f win32 test_chords.asm
```
WebAssembly example:
```
sointu-compile -o . -arch=wasm tests/test_chords.yml
sointu-compile -arch=wasm tests/test_chords.yml
wat2wasm test_chords.wat
```