Update README.md

This commit is contained in:
ArthurSonzogni 2020-05-20 22:12:20 +02:00
parent b00fa7dc65
commit 96e37b031a

View File

@ -37,14 +37,14 @@ A simple C++ library for terminal based user interface.
## Example:
~~~cpp
vbox(
hbox(
vbox({
hbox({
text(L"left") | border,
text(L"middle") | border | flex,
text(L"right") | border
),
}),
gauge(0.5) | border
)
})
~~~
~~~bash